SphereCommunity
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]

ON=@HITTRY
    REF1
=<SERV.UID.<UID>>        // Attacker
    
REF2=<SERV.UID.<SRC.UID>>    // Target
    
REF3=<SERV.UID.<ARGO.UID>>    // Item Being Used
    
IF <REF2.ISPLAYER>
        RETURN 
1
    
ENDIF

ON=@ITEMTARGON_ITEM
    
IF (<TARG.TYPE>==t_corpse)
        RETURN 
1
    
ENDIF 

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
    IF <SRC.ISEVENT.e_newbieDungeon>
        RETURN 1
    ENDIF

ON=ATTACK
    IF <SRC.ISEVENT.e_newbieDungeon>
        RETURN 1
    ENDIF

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
    REF1
=<SERV.UID.<UID>>        // Attacker
    
REF2=<SERV.UID.<SRC.UID>>    // Target
    
REF3=<SERV.UID.<ARGO.UID>>    // Item Being Used
    
IF (<REF2.ISPLAYER>) && (<REF3.TYPE>!=t_weapon_mace_staff)
        
SYSMESSAGE @55,,1 You can only hit someone in here with a stick ! :P
        
RETURN 1
    
ELSE
        
SYSMESSAGE @55,,1 You beat <REF2.NAMEwith a big <REF3.NAME>
    ENDIF 
Big Grin