View Single Post
  #2  
Old 11-15-2001, 12:00 PM
KJS KJS is offline
The one, The only -
KJS's Avatar
Join Date: Apr 2001
Location: USA, Minnesota
Posts: 1,012
KJS is on a distinguished road
Send a message via AIM to KJS
Re: Heres For joo people

Quote:
Originally posted by fireball_dolphonia
this is for when u buy an item it takes the value down
if (playerenters){
item = item = 10;
}
if (playersays(Buy item)){
item = item - 1;
}
replace that with

NPC Code:
if(playerenters)
item=10;
if(playerchats&&strequals(#c,buy item))
item--;

__________________
Thanks,
-KJL
Reply With Quote