SphereCommunity
Delay status - Printable Version

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



Delay status - darksoulfe - 06-28-2017 11:17 PM

Good morning, there's a delay problem in the shard. Occurs when a robe is placed that has str dex int +15 when removed, takes about 2 to 4 seconds to clear the status of the player, when it is 100 str putting the robe 115 taken the robe takes 2 to 4 seconds to return to the 100 where it should be fast


RE: Delay status - BestBG - 06-30-2017 02:05 PM

If you can post the script of your robe then we can help you better


RE: Delay status - darksoulfe - 07-01-2017 12:59 AM

PHP Code:
[ITEMDEF i_silver_dragon]
ID=02687
NAME
=Robe Silver Dragon
TYPE
=t_clothing
WEIGHT
=0.3
ARMOR
=72
DYE
=1

ON
=@CREATE
ATTR attr_newbie
COLOR
=07a1
HITPOINTS
=9999

ON
=@DAMAGE
HITS 
= <MAXHITS>
RETURN 
1

ON
=@EQUIP
IF (<LINK> == 04fffffff)
    
LINK = <SRC.UID>
ENDIF

IF (<
LINK> == <SRC.UID>)
            
src.sysmessage @077a,0,1 Sinta o poder o Silver Robe Dragon.
        

    
Name=<SRC.NAMESilver Dragon
    SRC
.MODSTR += 10
    SRC
.MODINT += 10
    SRC
.MODDEX += 10
    SRC
.SOUND=snd_SPELL_BLESS
ELSE
    IF (<
LINK.FINDLAYER(21).UID> != 0)
        
SRC.SYSMESSAGE Esse mantle nao lhe pertence.
        
CONT = <LINK.FINDLAYER(21).UID>

        
SERV.newitem i_robe
        
new.equip
        
new.remove
    
ENDIF
ENDIF
RETURN 
0

ON
=@UNEQUIP
IF (<LINK> == <SRC.UID>)
    
SRC.MODSTR -= 10
    SRC
.MODINT -= 10
    SRC
.MODDEX -= 10
    SRC
.SOUND=snd_SPELL_BLESS
ENDIF
RETURN 




RE: Delay status - Coruja - 07-27-2017 01:01 PM

are you using sphere 56d? I'm testing here using .MODSTR 10 on latest sphere 56d build and the value is getting updated instantly


RE: Delay status - PePs1Man - 07-27-2017 01:27 PM

I did experience some MODXXX issues using 56c. About to go to d soon.