Thread: sHOP sCRIPT
View Single Post
  #5  
Old 08-31-2001, 12:09 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
wrong ...

Quote:
if (playerenters) {show;
}
if (strequals(#c,buy bombs) && playerrupees>=5) {playerbombs+=5; playerrupees-=5; setplayerprop #c,;
} ;
This ould be wrong cause you would need 6 rupees to buy .. the correct to make something cost 5 rupee would be

if (created) {show;
}
i (playersays(buy arrows) && playerrupees>4) {
playerdarts+=5;
playerrupees-=5;
setplayerprop #c, Yipee !!!!;
}
Reply With Quote