The following warnings occurred:
Warning [2] Use of undefined constant SAPI_NAME - assumed 'SAPI_NAME' (this will throw an Error in a future version of PHP) - Line: 3388 - File: inc/functions.php PHP 7.4.33-nmm7 (Linux)
File Line Function
/inc/functions.php 3388 errorHandler->error
/showthread.php 116 build_archive_link
Warning [2] Use of undefined constant IN_ARCHIVE - assumed 'IN_ARCHIVE' (this will throw an Error in a future version of PHP) - Line: 3331 - File: inc/functions.php PHP 7.4.33-nmm7 (Linux)
File Line Function
/inc/functions.php 3331 errorHandler->error
/inc/functions.php 3324 build_forum_breadcrumb
/showthread.php 195 build_forum_breadcrumb
Warning [2] Use of undefined constant IN_ARCHIVE - assumed 'IN_ARCHIVE' (this will throw an Error in a future version of PHP) - Line: 3331 - File: inc/functions.php PHP 7.4.33-nmm7 (Linux)
File Line Function
/inc/functions.php 3331 errorHandler->error
/showthread.php 195 build_forum_breadcrumb






Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Anti PK
Author Message
htid4life
Journeyman
*

Posts: 162
Likes Given: 27
Likes Received: 4 in 3 posts
Joined: Mar 2012
Reputation: 2



Post: #1
Anti PK
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

[Image: htid.jpg]
10-12-2012 05:50 AM
Find all posts by this user Like Post Quote this message in a reply
Barnabus
Journeyman
*

Posts: 124
Likes Given: 0
Likes Received: 3 in 2 posts
Joined: Apr 2012
Reputation: 1



Post: #2
RE: Anti PK
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 !
(This post was last modified: 10-12-2012 07:25 AM by Barnabus.)
10-12-2012 07:03 AM
Find all posts by this user Like Post Quote this message in a reply
htid4life
Journeyman
*

Posts: 162
Likes Given: 27
Likes Received: 4 in 3 posts
Joined: Mar 2012
Reputation: 2



Post: #3
RE: Anti PK
Thanks for the fast reply
working like a charm now thanks again

[Image: htid.jpg]
10-13-2012 07:31 AM
Find all posts by this user Like Post Quote this message in a reply
Barnabus
Journeyman
*

Posts: 124
Likes Given: 0
Likes Received: 3 in 2 posts
Joined: Apr 2012
Reputation: 1



Post: #4
RE: Anti PK
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
(This post was last modified: 10-16-2012 05:59 AM by Barnabus.)
10-16-2012 05:59 AM
Find all posts by this user Like Post Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)