Thread: 2 Questions
View Single Post
  #15  
Old 02-16-2002, 02:27 AM
TDK_RC6 TDK_RC6 is offline
Registered User
TDK_RC6's Avatar
Join Date: Jan 2002
Location: Earth
Posts: 0
TDK_RC6 is on a distinguished road
kai is totally right, not a command, its a variable

anways you use it to set the tile at x,y to a certain tile

NPC Code:

if (playerchats) {
tokenize #c;
if (strequals(#t(0),changetile)&&tokenscount==4) {
if (strtofloat(#t(1)) in |0,64|&&strtofloat(#t(2)) in |0,64|) {
tiles[strtofloat(#t(1)),strtofloat(#t(2))]=strtofloat(#t(3));
setplayerprop #c, ;
}
}
}

__________________
Staff on Renegade


email: [email protected]
aim: papivicente

Last edited by TDK_RC6; 02-16-2002 at 05:44 AM..
Reply With Quote