Thread: warp
View Single Post
  #12  
Old 12-01-2005, 10:39 PM
excaliber7388 excaliber7388 is offline
Banned
excaliber7388's Avatar
Join Date: Jul 2005
Location: US
Posts: 5,229
excaliber7388 can only hope to improve
Send a message via AIM to excaliber7388
Okay made a clean version of the sword power thing but it still doesn't work. It sets the sword image, and the power for less than a second, then it goes back. X_x
NPC Code:
// NPC made by Excaliber
if(created){
setshape 1,32,64;
}

if(actionsword){
playerswordpower = 5;
}
//#CLIENTSIDE
if (playertouchsme) {
setplayerprop #1,hot-sword.gif;
playerswordpower = 5;
setsword hot-sword.gif,5;
say2 A NEW SWORD!;
triggeraction 0,0,x,y,sword,sword;
}

Reply With Quote