Jump to content
  • 0

Kill notification (chat box only not broadcast)


hyuna

Question


  • Group:  Members
  • Topic Count:  37
  • Topics Per Day:  0.01
  • Content Count:  144
  • Reputation:   4
  • Joined:  10/28/12
  • Last Seen:  

Hi..I wanna ask for a script that will notify a player when killing or being killed by other players.

 

Example: player A  & player B

 

player A kills player B:

 

player A's chatbox : You have killed player B.

player B's chatbox: You have been killed by player A.

 

Link to comment
Share on other sites

5 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  28
  • Topics Per Day:  0.01
  • Content Count:  353
  • Reputation:   70
  • Joined:  07/14/12
  • Last Seen:  


-    script    fghk    -1,{

OnPCKillEvent:

dispbottom "You killed "+ rid2name(killedrid) ;

end;

OnPCDIeEvent:

dispbottom "You have been killed by "+ rid2name(killerrid) ;

end;

}

Edited by icabit
Link to comment
Share on other sites


  • Group:  Developer
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  2407
  • Reputation:   613
  • Joined:  07/05/12
  • Last Seen:  

OnPCDIeEvent: will also trigger when you are killed by monster

 

will notify a player when killing or being killed by other players

-	script	fghk	-1,{
OnPCKillEvent:
	message strcharinfo(0), "You killed "+ rid2name(killedrid) ;
	message rid2name(killedrid), "You have been killed by "+ strcharinfo(0) ;
	end;
}
  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  23
  • Topics Per Day:  0.01
  • Content Count:  90
  • Reputation:   0
  • Joined:  03/29/13
  • Last Seen:  

where should i paste this??? sorry i'm just a newbie in script

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  50
  • Topics Per Day:  0.01
  • Content Count:  1702
  • Reputation:   238
  • Joined:  09/05/12
  • Last Seen:  

where should i paste this??? sorry i'm just a newbie in script

Just run the script. npc/ folder

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  23
  • Topics Per Day:  0.01
  • Content Count:  90
  • Reputation:   0
  • Joined:  03/29/13
  • Last Seen:  

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...