Jump to content
  • 0

R> Monster killing quest with extra reward?


Rocky Road

Question


  • Group:  Members
  • Topic Count:  34
  • Topics Per Day:  0.01
  • Content Count:  72
  • Reputation:   0
  • Joined:  11/08/14
  • Last Seen:  

Hi guys can i ask for a quest that you need to kill certain monster before recieving Added name uhm

example your char name was Killer then when you finish this quest you name was going to be {GoD}Killer ?

Edited by chromus24
Link to comment
Share on other sites

1 answer to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  86
  • Topics Per Day:  0.02
  • Content Count:  591
  • Reputation:   146
  • Joined:  06/19/12
  • Last Seen:  

use FakeName.diff =>   https://rathena.org/board/topic/60188-fakename-show-guildparty/

 

use small Tittles, Playername+Titlename: <= 23 letters

 

z.b

crystilia,67,88,4	script	Mobl#01	116,{
mes "You have to kill:";
mes "100 Porings...";
mes "100 Fabres...";
mes "and 100 Chonchons";
next;
if(PoringKills < 100) goto l_nokills;
if(FabreKills < 100) goto l_nokills;
if(ChonKills < 100) goto l_nokills;
set PoringKills,PoringKills - 100;
set FabreKills,FabreKills - 100;
set ChonKills,Chonkills - 100;
atcommand "@fakename [GoD] "+ strcharinfo(0) +""; // the Tittle
close;
		
l_nokills:
mes "You didn't kill enough monsters!";
close;

OnNPCKillEvent:
if(killedrid == 1002) //1002 = Poring
{
set PoringKills,PoringKills + 1;
dispbottom "Killed: "+PoringKills+"/100 Porings";
}else if (killedrid == 1007) //1007 = Fabre
{
set FabreKills,FabreKills + 1;
dispbottom "Killed: "+FabreKills+"/100 Fabre's";
}else if (killedrid == 1011) //1011 = Chonchon
{
set ChonKills,ChonKills + 1;
dispbottom "Killed: "+ChonKills+"/100 Chonchon's";
}
end;
}
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...