Hello.. i'm over this script for about a few hours now.. and i'm really getting sick 
this is what i have in qfunction:
PROBLEM: when u click on the goldbar you get all your choices working correctly but if you click on the goldbar.. it will dissapear..then on row 7 i make it re-appear in bag.. but if you click on it and drop it on the floor and then press on "Change to Cash".. it will give the cash to the player even though the goldbar isn't in the bag.. i have already inserted a CHECKITEM goldbar 1 in the [@cashbar] function but it still doesn't work.. any ideas?
this is what i have in qfunction:
Code:
[@StdModeFunc60]
#SAY
**** GOLDBARS ****\ \
Hello, what do you want to do?\ \
<Bundle/@bundlebar> , <Change to Cash/@cashbar> , <Nothing/@exit>
#ACT
GIVE GoldBar 1
BREAK
[@bundlebar]
#IF
CHECKITEM GoldBar 5
#ACT
TAKE GoldBar 5
GIVE GoldBarBundle 1
BREAK
#ELSESAY
Something Went Wrong! This happened because:\ \
- You Do Not Have 5 GoldBars To Exchange!\
<Cancel/@exit>
[@cashbar]
#IF
CHECKITEM GoldBar 1
checkgold 99000001
#SAY
Something Went Wrong! This maybe happened because:\ \
- You Might Have Reached Your Bag Limit (99+ M)\
- Or You Have Taken Out of Your Bag The GoldBar!!\ \
<Cancel/@exit>
#ELSEACT
take goldbar 1
give gold 1000000
#ELSESAY
GoldBar was Exchanged into money.\
<Cancel/@exit>
PROBLEM: when u click on the goldbar you get all your choices working correctly but if you click on the goldbar.. it will dissapear..then on row 7 i make it re-appear in bag.. but if you click on it and drop it on the floor and then press on "Change to Cash".. it will give the cash to the player even though the goldbar isn't in the bag.. i have already inserted a CHECKITEM goldbar 1 in the [@cashbar] function but it still doesn't work.. any ideas?
Last edited:
