Useing gamegold and gamepoints

smoochy boys on tour

jamiedotco

Dedicated Member
Dedicated Member
Nov 16, 2006
140
0
62
how do you check and remove them via an npc.

I have tried

@checkgamepoint and @checkgamepoints and @check gamepoint

@take gamepoints and all of the above.

but none of them working.
 

jasper

Golden Oldie
Golden Oldie
Sep 10, 2005
890
3
125
from the if/act document


checkgamegold usage: CHECKGAMEGOLD >= 100 what it does: checks if your gamegold >= 100, options: =, <, >, >=
checkgamepoint usage: CHECKGAMEPOINT < 5 what it does: checks if your gmepoints are lower then 5, options: =, <, >, >=


gamepoint usage: GAMEPOINT = 5 what it does: sets your gamepoint value to 5, options: =, +, -
 

wanabee

Golden Oldie
Golden Oldie
Jul 10, 2004
723
4
125
newbury
how do you check and remove them via an npc.

I have tried

@checkgamepoint and @checkgamepoints and @check gamepoint

@take gamepoints and all of the above.

but none of them working.

hi not sure if this is what you are looking for but i have this on bandet,
which takes gamegold and gives item or experiance.

[@gpoint1]
#IF
CHECKGAMEGOLD > 1000
#ACT
GAMEGOLD - 1000
GIVE Widdowmaker 1
#SAY
Take WiddowMaker And Enjoy \ \
<Back/@gpoint> <Exit/@exit>
#ELSESAY
You Do Not Have Enough Game Points\\
<Back/@gpoint> <Exit/@exit>