![]() |
Anti PK - Printable Version +- SphereCommunity (https://forum.spherecommunity.net) +-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d) +--- Forum: Script Requests (/Forum-Script-Requests) +--- Thread: Anti PK (/Thread-Anti-PK) |
Anti PK - htid4life - 10-12-2012 05:50 AM Hey guys Im wondering if any one would be able to sort out a script for me for my newbie dungeon basically what i need is A event for no attacking players with spells or swords or pets also no looting or cutting up corpse of players. need more info just ask thanks in advance guys RE: Anti PK - Barnabus - 10-12-2012 07:03 AM Here is something simple you can work with to make it as you please. Under the [AREADEF YourNewbieDungeon] (To give the event) ON=@REGIONENTER REF1=<SERV.UID.<UID>> IF !<REF1.ISEVENT.e_newbieDungeon> REF1.EVENTS +e_newbieDungeon ENDIF ON=@REGIONLEAVE REF1=<SERV.UID.<UID>> IF <REF1.ISEVENT.e_newbieDungeon> REF1.EVENTS -e_newbieDungeon ENDIF PHP Code: [EVENTS e_newbieDungeon] Oh and for the Pets if you find your pet speech file [SPEECH spk_pet] and scroll down too ON=KILL and ON=ATTACK and do something like .... Code: ON=KILL and hopefully that should work ! RE: Anti PK - htid4life - 10-13-2012 07:31 AM Thanks for the fast reply working like a charm now thanks again RE: Anti PK - Barnabus - 10-16-2012 05:59 AM Happy Days! And I set ARGO as REF3 just because you mentioned with a sword etc.... So you could take it further and do something like. PHP Code: ON=@HITTRY ![]() |