Jump to content

Does rA Support Multiple Lines in 1 Dialogue?


Deleted User

Recommended Posts


  • Group:  Members
  • Topic Count:  22
  • Topics Per Day:  0.00
  • Content Count:  235
  • Reputation:   55
  • Joined:  12/02/11
  • Last Seen:  

Hi, I found out that rAthena don't support multiple lines in 1 dialogue I remember way back then on eAthena it does support correct me if I'm wrong but it used to work like this before.

I would be happy if someone could point me out.

Few sample scripts:

prontera,156,173,6	script	Mes Dialogue	100,{
	mes "Hello 1","Hello 2",
		"Hello 3","Hello 4";
	end;
}

prontera,154,173,6	script	Ann Dialogue	100,{
	announce "Hello 1","Hello 2",
			 "Hello 3","Hello 4",0;
	end;
}

I tested this both it does not work only 1 dialogue will be supported which is "Hello 1"
If ever this might be a wrong topic please moved this moderator.

Thank you!

Regards,
Meroy

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  12
  • Topics Per Day:  0.00
  • Content Count:  120
  • Reputation:   48
  • Joined:  07/23/13
  • Last Seen:  

On ‎7‎/‎14‎/‎2017 at 3:46 AM, Kaze said:

Hi, I found out that rAthena don't support multiple lines in 1 dialogue I remember way back then on eAthena it does support correct me if I'm wrong but it used to work like this before.

I would be happy if someone could point me out.

Few sample scripts:


prontera,156,173,6	script	Mes Dialogue	100,{
	mes "Hello 1","Hello 2",
		"Hello 3","Hello 4";
	end;
}

prontera,154,173,6	script	Ann Dialogue	100,{
	announce "Hello 1","Hello 2",
			 "Hello 3","Hello 4",0;
	end;
}

I tested this both it does not work only 1 dialogue will be supported which is "Hello 1"
If ever this might be a wrong topic please moved this moderator.

Thank you!

Regards,
Meroy

*mes "<string>"{,"<string>"{,...}};

mes did support multiple line.

 

As the announce command, 

*announce "<text>",<flag>{,<fontColor>{,<fontType>{,<fontSize>{,<fontAlign>{,<fontY>}}}}};

it didn't support multiple line.

You should always check https://github.com/rathena/rathena/blob/master/doc/script_commands.txt before start scripting.

Link to comment
Share on other sites

×
×
  • Create New...