Thread: Boots
View Single Post
  #6  
Old 08-03-2005, 03:51 PM
alissalee alissalee is offline
Mr. Ciprioni Atrius Admin
alissalee's Avatar
Join Date: Dec 2004
Location: Lawrence, Ma
Posts: 190
alissalee is an unknown quantity at this point
Send a message via AIM to alissalee Send a message via MSN to alissalee
if (this.on==1){
setplayerprop #c, Speed: 6;
this.speed = 6;
}
}
if (keypressed && strequals(#p(1),7)) {
if (this.on==1){
setplayerprop #c, Speed: 7;
this.speed = 7;
}
}
if (keypressed && strequals(#p(1),8)) {
if (this.on==1){
setplayerprop #c, Speed: 8;
this.speed = 8;
}
}
if (keypressed && strequals(#p(1),9)) {
if (this.on==1){
setplayerprop #c, Speed: 9;
this.speed = 9;
}
}
if (keypressed && strequals(#p(1),0)) {
if (this.on==1){
setplayerprop #c, Speed: 10;
this.speed = 10;
}
}
if (keypressed && strequals(#p(1),`)) {
if (this.on==0) {
this.on = 1;
this.speed = 1;
timeout = .05;
setplayerprop #c, Boots on;
}
else if (this.on==1) {
this.on = 0;
setplayerprop #c, Boots off;
}
}
if (playerchats&&strequals(#c,/fix)) {
this.on = 0;
enableweapons;
}

can some one fix it please?