Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Pvp killing announcement

Newbie Spellweaver
Joined
Nov 19, 2006
Messages
34
Reaction score
0
This is for ppl who very lazy for search :gun2:

announce ""+$@PlayerKiller$+" has pwned +$@PlayerKilled$+!

make file at custom/
then u make at script_custom.txt
then u start u server and go kill ppl
 
Junior Spellweaver
Joined
Dec 17, 2006
Messages
123
Reaction score
0
umm.... hope you're fully aware of that the above script won't do anything. Except generate a bunch of errors due to undeclared variables + the fact that it isn't within any npc script tags.

if you want a PvP kill-script, use this:

Code:
-	script	PCKillEvent	-1,{
	set $@kliA$,strcharinfo(0);
	attachrid killerrid;
	set $@kliB$,strcharinfo(0);
	announce $@kliA$+" was killed by "+$@kliB$+"!",1,0x00FF00;
	end;
}

input this into a file called PCKillEvent.txt which is located in \npc\custom\ (make it if it doesn't exist).

Then open up \npc\scripts.custom.conf and add the row:

npc: npc/custom/PCKillEvent.txt
 
Skilled Illusionist
Joined
Aug 28, 2006
Messages
310
Reaction score
0
or he must look for terces PvP Ladder at eathena^^ is a ladder with announce
 
Junior Spellweaver
Joined
Dec 17, 2006
Messages
123
Reaction score
0
yea, but the entire script can't be announce alone ;)

The one I posted has announce too =)
 
Newbie Spellweaver
Joined
Nov 19, 2006
Messages
34
Reaction score
0
announce ""+$@PlayerKiller$+" has pwned +$@PlayerKilled$+!

i use this also can annouce also =.=
 
Junior Spellweaver
Joined
Dec 17, 2006
Messages
123
Reaction score
0
umm.. yea, it announces, announce is a standard script command in eA scripting... but it's not the entire script for PvP killing announcement ;)

also the syntax for it is wrong.

is:
announce ""+$@PlayerKiller$+" has pwned +$@PlayerKilled$+!

should be:
announce ""+$@PlayerKiller$+" has pwned" +$@PlayerKilled$+"!";
 
Newbie Spellweaver
Joined
Nov 19, 2006
Messages
34
Reaction score
0
ermmm maybe i wrong =.= i also type so fast no see 1st >.< i am so sry
 
Back
Top