Jump to content
  • 0

Doram Starter Quests and NPCs


ZelosAvalon

Question


  • Group:  Members
  • Topic Count:  72
  • Topics Per Day:  0.02
  • Content Count:  181
  • Reputation:   33
  • Joined:  11/11/12
  • Last Seen:  

I am creating the NPC scripts from the Dorams initial map, if anyone can help me in this one:

Applicant MacCanie & Paul [NEED HELP]

i don't know how to set the npctalk with two diferents NPCs with the same script, and I have some problems with questinfo

if som1 wanna test this one already working like oficial iRO

Vigilante Ajegna [WORKING]

when i finish all NPC's from lasagna maps I'll put them all in one script according to the map ;)

All the help is welcome! 

i have more dialogs but dont work yet!

The replay was attached to the post!

Assistentes.rrf

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

  • Group:  Forum Moderator
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  1268
  • Reputation:   382
  • Joined:  02/03/12
  • Last Seen:  

3 hours ago, ZelosAvalon said:

i don't know how to set the npctalk with two diferents NPCs with the same script, and I have some problems with questinfo

Cool stuff.
Use unittalk with getnpcid.

https://github.com/rathena/rathena/blob/master/doc/script_commands.txt#L7302-L7306

https://github.com/rathena/rathena/blob/master/doc/script_commands.txt#L2397-L2407

/no1 Keep it up.

  • Upvote 1
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  72
  • Topics Per Day:  0.02
  • Content Count:  181
  • Reputation:   33
  • Joined:  11/11/12
  • Last Seen:  

13 hours ago, Skorm said:

I tried, but I could not get it to work! /hmm

Could you help me ?

Link to comment
Share on other sites

  • 0

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

For NPCs you can also use *npctalk "<message>"{,"<NPC name>"};

 https://github.com/rathena/rathena/blob/master/doc/script_commands.txt#L6108

 

izlude,75,100,3	script	npc 1	4_DR_SOLDIER,{
	unittalk getnpcid(0,"npc 2"), "NPC 2 is talking";
	end;
}

izlude,72,100,3	script	npc 2	4_DR_SOLDIER,{
	npctalk "npc 1 is talking", "npc 1";
	end;
}

 

Edited by Capuche
  • Upvote 1
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  72
  • Topics Per Day:  0.02
  • Content Count:  181
  • Reputation:   33
  • Joined:  11/11/12
  • Last Seen:  

On 11/03/2017 at 7:45 PM, Capuche said:

For NPCs you can also use *npctalk "<message>"{,"<NPC name>"};

 https://github.com/rathena/rathena/blob/master/doc/script_commands.txt#L6108

 


izlude,75,100,3	script	npc 1	4_DR_SOLDIER,{
	unittalk getnpcid(0,"npc 2"), "NPC 2 is talking";
	end;
}

izlude,72,100,3	script	npc 2	4_DR_SOLDIER,{
	npctalk "npc 1 is talking", "npc 1";
	end;
}

 

tyvm 

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...