Double clicking goldbars/goldbarbundles/goldchest for gold

Bon

Legend
Legendary
Jul 29, 2004
6,741
342
330
Kent, UK
Yo

basically i wanna make it so when u dbl click a goldbar / bundle / chest it will give you cash

i know how to set it all up so it does that, my only problem is wot do i put in the unbindlist file?

addgold 1000000
1000000

etc all dont work


any1 tell me wot i have to put plz?

thx :eek:
 

NewHope

Golden Oldie
Golden Oldie
Nov 18, 2005
1,311
28
184
Through the Q-Function.txt

Here:

;;;;;;;;;;;;;;;;;;; Bar
[@StdModeFunc69]
#IF
checkitem GoldBar 1
#ACT
take GoldBar 1
give gold 1000000
break
;;;;;;;;;;;;;;;;;;; BarBundle
[@StdModeFunc70]
#IF
checkitem GoldBarBundle 1
#ACT
take GoldBarBundle 1
give gold 5000000
break
;;;;;;;;;;;;;;;;;;; Chest
[@StdModeFunc71]
#IF
checkitem GoldChest 1
#ACT
take GoldChest 1
give gold 10000000
break

You need to put the numbers after the StdModeFunc in the FLD_ANICOUNT of your database next to the goldbar,goldbarbundle,goldchest.
 
Upvote 0