![]() |
Hello guys - Printable Version +- SphereCommunity (https://forum.spherecommunity.net) +-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d) +--- Forum: Script Help (/Forum-Script-Help) +--- Thread: Hello guys (/Thread-Hello-guys) |
Hello guys - Dullais - 04-06-2013 01:40 AM Well, my code isn't giving an paralyze to the person who is being damaged. Actualy if i put this one on on=@equip, it wont work either... and if i remove the src it do affect hitter... whats wrong with it ? (it is on event in ON=@Hit trigger) i think it could dont work because of that trigger it self, but why doesn't it work on equip ? Code: IF !(STRCMP(<TAG0.WEAPON>, ELECTR)) && (<Eval.rand(1,2)> == 1) RE: Hello guys - Shaklaban - 04-06-2013 02:04 AM because damage will be applied after the hit and remove the statf_freeze flag. you need to apply damage in your script and bypass the hardcoded dmage with return 1: PHP Code: IF !(STRCMP(<TAG0.WEAPON>, ELECTR)) && (<Eval.rand(1,2)> == 1) RE: Hello guys - RanXerox - 04-06-2013 02:06 AM A couple things: (<Eval.rand(1,2)> == 1) can be written (<R1,2>==1) Also, paralyze is a harmful spell (that can also be resisted), by virtue of its flags which by default are: FLAGS=SPELLFLAG_TARG_CHAR|SPELLFLAG_DIR_ANIM| SPELLFLAG_HARM| SPELLFLAG_FX_TARG| SPELLFLAG_RESIST So when you use SPELLEFFECT, you likely need to indicate the source of the damage etc: SPELLEFFECT spell_id, strength, source_character_uid, source_item_uid If you don't supply the source of the damage, it probably assumes SRC, and since in these triggers that is you (and you normally don't damage yourself) it may be ignoring the effect. RE: Hello guys - Dullais - 04-06-2013 03:00 AM (04-06-2013 02:04 AM)Shaklaban Wrote: because damage will be applied after the hit and remove the statf_freeze flag. you need to apply damage in your script and bypass the hardcoded dmage with return 1: Well this is what i sad here: " think it could don't work because of that trigger it self, but why doesn't it work on equip ? " So i would make timer with timer 0, so it runs as the first script is done. but if i cant make the thing being equiped do this... (04-06-2013 02:06 AM)RanXerox Wrote: A couple things: The thing about random, i will use that further, so thanks ![]() The thing about source, well you were right, still it removes itself because hit is made, but iam going to leave it that way, and just make something invisible that is forced to be equiped and removes itself after setting paralyze. so thanks man ![]() |