npc help plz

~HeavenSent~

Golden Oldie
Golden Oldie
Nov 9, 2005
2,157
17
150
Chorley
[@Items]
#IF
CHECKITEM (item)
CHECKITEM (item)
CHECKITEM (item)
#ACT
Take (item) 1
Take (item) 1
Take (item) 1
#ACT
Give Gold 100000
Give ApprenticeRing 1
close
#ELSESAY
You don't have the (item) \
<Exit/@exit>



Why dose it give the ring & gold with out the item's?

Itemname's taken away
 

Nicky

LOMCN Veteran
Veteran
Apr 21, 2006
416
0
63
Swansea, South Wales
Try:

[@Items]
#IF
CHECKITEM (item) 1
CHECKITEM (item) 1
CHECKITEM (item) 1
#ACT
Take (item) 1
Take (item) 1
Take (item) 1
Give Gold 100000
Give ApprenticeRing 1
close
#ELSESAY
You don't have the (item) \
<Exit/@exit>
 
Last edited:
Upvote 0

MentaL

Mir 1.4
VIP
Mar 3, 2004
3,672
372
375
Cardiff
[@Items]
#IF
CHECKITEM (item) AMOUNT
CHECKITEM (item) AMOUNT
CHECKITEM (item) AMOUNT
#ACT
Take (item) AMOUNT
Take (item) AMOUNT
Take (item) AMOUNT
Give Gold 100000
Give ApprenticeRing 1
close
#ELSESAY
You don't have the (item) \
<Exit/@exit>


Always useful to specify the amount.
 
Upvote 0