Thread: ski script
View Single Post
  #18  
Old 11-26-2001, 03:55 PM
nyghtGT nyghtGT is offline
Banned
nyghtGT's Avatar
Join Date: Jun 2001
Posts: 3,993
nyghtGT is on a distinguished road
Send a message via AIM to nyghtGT
here is a easy ski script:
NPC Code:

NPC Code:

// NPC made by Nyght GT
// Skies
if (created) {
show;
}
if (playertouchsme) {
toweapons Ski;
}
if (weaponfired && strcontains(off,#s(client.ski))) {
setstring client.ski,on;
replaceani walk,ski;
}
if (weaponfired && strcontains(on,#s(client.ski))) {
setstring client.ski,off;
replaceani ski,walk;
}




you can use it if you want to its not anything I am proud of ... but its just something I made ...
Reply With Quote