Graal Forums

Graal Forums (https://forums.graalonline.com/forums/index.php)
-   NPC Scripting (https://forums.graalonline.com/forums/forumdisplay.php?f=8)
-   -   Heres For joo people (https://forums.graalonline.com/forums/showthread.php?t=16976)

fireball_dolphonia 11-15-2001 11:27 AM

Heres For joo people
 
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;
}

KJS 11-15-2001 12:00 PM

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--;



All times are GMT +2. The time now is 06:15 AM.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
Copyright (C) 1998-2019 Toonslab All Rights Reserved.