Quote:
|
Originally Posted by Inverness
Am I correct in saying that instead of using something like:
NPC Code:
player.chat = "Account #s(this.string1) was kicked";
I would use:
NPC Code:
player.chat = "Account" @ this.string1 @ "was kicked";
I'm confused about that, because I want a deffinate way of identifying what the stringname is from the rest of the words.
I hope this makes sense.
|
you're definitely right
message codes are outdated and shouldnt be used anymore
although you forgot the space
NPC Code:
player.chat = "Account " @ this.string1 @ " was kicked";