Hi all,
I have the following multi-line command, where Character_1 aims to invite my other 5 characters into a group, and then tells them to accept the invite:
The problem that I am having is the the instruction "/invite" interprets the " ; " as part of the character's name. As a result, it sends the invite to " Character_2 ; ".
Any idea how to solve this?
I have the following multi-line command, where Character_1 aims to invite my other 5 characters into a group, and then tells them to accept the invite:
Code:
/multiline ;
/timed 1 /disband ;
/timed 2 /invite Character_2 ;
/timed 2 /invite Character_3 ;
/timed 2 /invite Character_4 ;
/timed 2 /invite Character_5 ;
/timed 2 /invite Character_6 ;
/timed 3 /dex Character_2 /invite ;
/timed 3 /dex Character_3 /invite ;
/timed 3 /dex Character_4 /invite ;
/timed 3 /dex Character_5 /invite ;
/timed 3 /dex Character_6 /invite
The problem that I am having is the the instruction "/invite" interprets the " ; " as part of the character's name. As a result, it sends the invite to " Character_2 ; ".
Any idea how to solve this?



It is funny: some of my multilines commands work fine when I split the code into multiple lines (for easier code reading), but some others, like this one, doesnt. Not sure why.