3G Item Bundles - DO THEY EXIST?

smoochy boys on tour

SoulForge

Dedicated Member
Dedicated Member
Oct 18, 2004
169
7
64
I know for a fact i have bundles in my server db but cannot locate where the file is that tells server which bundle gives what item any idea if it even works in 3G mir3?

Can an admin or mod move this to Server help posted it in wrong bloody forum :(
 
Last edited:

ZoniStrife

Dedicated Member
Dedicated Member
Jun 30, 2009
172
0
42
are u talking about pots ?? if so u need to make a script for them

if ur talking about booty they already stack
 
Upvote 0

SoulForge

Dedicated Member
Dedicated Member
Oct 18, 2004
169
7
64
Could someone please give me an example of how this is done as ive never used the bundle system in 3g as of yet since most things stack :) also couldnt find no bundle scripts in my files but there is ALOT of files to look thru lol
 
Upvote 0

ZoniStrife

Dedicated Member
Dedicated Member
Jun 30, 2009
172
0
42
u would have to have 2 items in db been a while so might not be right

but say u wanted a HPSmallBundle

it would be something like
[@bundleSwap]
#IF
checkitem HPSmallBundle 1
#ACT
Take HPSmallBundle 1
Give HPPotSmall 6
 
Upvote 0

chimera

LOMCN VIP
VIP
Jul 30, 2003
1,054
23
235
UK
envir\questdiary\system\itemscripts\itemevents.txt

{
#ACT
SetItemEvent 61 20 @whatever_it_is_Main

[@whatever_it_is_main]
#IF
checkitem HPSmallBundle 1
#ACT
Take HPSmallBundle 1
Give HPPotSmall 6
}


In sql item database need to create a line for HPSmallBundle like this:

1234 HPSmallBundle 61 20 6 0 0 0 0 1 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 5 0 0 0

This is 1234- item index number, 61 and 20 signifies runs a bundling script, etc....
 
Last edited:
Upvote 0