SphereCommunity
Housing - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: Script Submissions (/Forum-Script-Submissions)
+--- Thread: Housing (/Thread-Housing)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22


RE: Housing - Gon - 10-28-2012 07:38 AM

thanks, great script btw ty for sharing and supporting Big Grin


RE: Housing - Mordaunt - 10-28-2012 07:42 AM

Thanks Wink


RE: Housing - htid4life - 10-29-2012 12:50 PM

yes very nice script there mord


RE: Housing - escribano - 11-20-2012 01:52 PM

Mordaunt, im getting this erros when i @dclick on sign:

ERROR:(housing2.0.scp,181)300:Gump packet for dialog 'd_house_menu' too big to send to client.

i never see an error like this, and i dunno how to fix...
thanks!


RE: Housing - Mordaunt - 11-21-2012 03:34 AM

Wow that's a new one on me, I have never seen that one either.

What server version and client version are you running?


Actually just taken a look at that line in the script for some reason it reads

Code:
sdialog d_house_menu

it should read

Code:
dialog d_house_menu

No idea how that got messed up, nor why it hasn't thrown out any errors before.
Either edit that line or download the patched version I just put up.
Let me know if you still get the error.


RE: Housing - escribano - 11-21-2012 08:03 AM

Im running sphere 56b on client 4.0.11c and 5.0.2


thx

I've changed the lilne but the error stills...


Where is this patched version?

thanks again


RE: Housing - Mordaunt - 11-21-2012 08:26 AM

It's the same download link, but it is only that line that was changed.

You might find the error is occurring because of your client. Try using a 6.x client

Did a little digging and "sdialog" is actually a valid command so it cannot have been that which was causing the issue.


RE: Housing - Runcuks - 02-03-2013 04:37 AM

House system is great but could someone help me with one function what i need to made? The function is following -> if player who is not registered in house he is able to drop items inside house region for example front of the house doors so owner could get in, how to fix this bug ?
Thanks.


RE: Housing - Mordaunt - 02-03-2013 07:21 AM

Untested but something like this should work.

Code:
ON=@ItemDropOn_Ground
    if <QVAL (<def.account_ownership>)? (<src.acc_is_owner>):(<src.is_owner>)> || (<src.is_coowner>) || (<src.is_friend>)
        return 0
    else
        act.bounce
        return 1
    endif

put it under [EVENTS e_house_player_events] inside the script


RE: Housing - Runcuks - 02-03-2013 04:30 PM

(02-03-2013 07:21 AM)Mordaunt Wrote:  Untested but something like this should work.

Code:
ON=@ItemDropOn_Ground
    if <QVAL (<def.account_ownership>)? (<src.acc_is_owner>):(<src.is_owner>)> || (<src.is_coowner>) || (<src.is_friend>)
        return 0
    else
        act.bounce
        return 1
    endif

put it under [EVENTS e_house_player_events] inside the script
Ok this is working good but found bug if player is standing out of house territory when he doesnt get that event he is able to drop items inside house territory ....