View Single Post
  #7  
Old 10-03-2001, 03:57 AM
btedji btedji is offline
bryan986
btedji's Avatar
Join Date: Apr 2001
Location: Force 10
Posts: 1,153
btedji is on a distinguished road
Send a message via ICQ to btedji Send a message via AIM to btedji Send a message via Yahoo to btedji
Quote:
Originally posted by grim_squeaker_x
It cannot be used with letters unless you use some special scripting, E.G this:
NPC Code:
if (playertouchsme) {
this.i=int(random(0,26));
message #e(this.i,1,abcdefghijklmnopqrstuvwxyz);
}


And AlphaFlame, random is a function which uses variables so it doesn't need the #v
you can make this shorter:

NPC Code:

if (playertouchsme) {
message #e(int(random(0,26)),1,abcdefghijklmnopqrstuvwxyz) ;
}



not much shorter but better
Reply With Quote