View Single Post
  #14  
Old 02-13-2005, 10:17 PM
Evil_Trunks Evil_Trunks is offline
Evil
Evil_Trunks's Avatar
Join Date: Dec 2004
Posts: 391
Evil_Trunks is on a distinguished road
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";

__________________

Reply With Quote