![]() |
home cannot be transferred - Printable Version +- SphereCommunity (https://forum.spherecommunity.net) +-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d) +--- Forum: General Help (/Forum-General-Help) +--- Thread: home cannot be transferred (/Thread-home-cannot-be-transferred) |
home cannot be transferred - Satvet - 02-18-2020 06:05 PM Can a suggestion for this? -does the photo appear https://imgur.com/W3DzS7Z RE: home cannot be transferred - Coruja - 02-21-2020 01:24 PM This seems to be a custom script, are you opening the trade window using the hardcoded function "OPENTRADEWINDOW [char_uid] [item_uid]"? RE: home cannot be transferred - Satvet - 02-21-2020 08:54 PM CommunityPack. "Version 5.5" (sphere_house_system) I use. thy of sharing. I click on the transfer button, says choose the person to be transferred. "TradeWindow" opens when you select the char. When I accept it, it tells me to wait. I use the following. Quote:[DIALOG d_house_ownership BUTTON] Quote:[EVENTS e_house_transfer] PHP Code: [FUNCTION f_house_transfer] RE: home cannot be transferred - Coruja - 02-22-2020 10:22 AM I can't find the code that open the trade window, maybe it should be under dialog d_house_transfer But as I recall this is a really old script made before OPENTRADEWINDOW got created, so it open the trade window using an workaround to create the trade window container and equip it manually on char, so you must find this code and replace it with OPENTRADEWINDOW [char_uid] [item_uid] RE: home cannot be transferred - Satvet - 02-27-2020 06:12 PM I couldn't find solution, will you be able to help? RE: home cannot be transferred - Coruja - 02-28-2020 04:55 PM I was about to request you this script to take a look, but then I realized that this code seems to be like a script that I made about a decade ago, I found a old copy here and it is exactly what I thought lol This script have a workaround function to manually open the trade window creating a t_eq_trade_window container to equip it on char and use SENDPACKET to open the gump. But this is not needed anymore because now this can be done using OPENTRADEWINDOW function. I don't remember the name of this old workaround function (maybe [FUNCTION TradeWindow] or something like this) but you must delete it from the script and use OPENTRADEWINDOW instead Code: [DIALOG d_house_transfer BUTTON] RE: home cannot be transferred - Satvet - 03-05-2020 03:16 AM thx. good working now |