Multiple rewards for Rolling Papers

I am trying to use rolling papers for different strains of weed. Is it possible to have multiple strains set to combine with one item for different rewards? This is my current set up for Rolling Papers.

[‘rolling_paper’] = {
[‘name’] = ‘rolling_paper’,
[‘label’] = ‘Rolling Paper’,
[‘weight’] = 0,
[‘type’] = ‘item’,
[‘image’] = ‘rolling_paper.png’,
[‘unique’] = false,
[‘useable’] = false,
[‘shouldClose’] = true,
[‘combinable’] = {
{
accept = ‘weed_white-widow’,
reward = ‘joint_white-widow’,
anim = {
[‘dict’] = ‘anim@amb@business@weed@weed_inspecting_high_dry@’,
[‘lib’] = ‘weed_inspecting_high_base_inspector’,
},
},
{
accept = ‘weed_skunk’,
reward = ‘joint_skunk’,
anim = {
[‘dict’] = ‘anim@amb@business@weed@weed_inspecting_high_dry@’,
[‘lib’] = ‘weed_inspecting_high_base_inspector’,
},
},
{
accept = ‘weed_purple-haze’,
reward = ‘joint_purple-haze’,
anim = {
[‘dict’] = ‘anim@amb@business@weed@weed_inspecting_high_dry@’,
[‘lib’] = ‘weed_inspecting_high_base_inspector’,
},
},
{
accept = ‘weed__og-kush’,
reward = ‘joint_og-kush’,
anim = {
[‘dict’] = ‘anim@amb@business@weed@weed_inspecting_high_dry@’,
[‘lib’] = ‘weed_inspecting_high_base_inspector’,
},
},
{
accept = ‘weed_amnesia’,
reward = ‘joint_amnesia’,
anim = {
[‘dict’] = ‘anim@amb@business@weed@weed_inspecting_high_dry@’,
[‘lib’] = ‘weed_inspecting_high_base_inspector’,
},
},
{
accept = ‘weed___ak47’,
reward = ‘joint_ak47’,
anim = {
[‘dict’] = ‘anim@amb@business@weed@weed_inspecting_high_dry@’,
[‘lib’] = ‘weed_inspecting_high_base_inspector’,
},
},
{
accept = ‘highgrade’,
reward = ‘joint’,
anim = {
[‘dict’] = ‘anim@amb@business@weed@weed_inspecting_high_dry@’,
[‘lib’] = ‘weed_inspecting_high_base_inspector’,
},
},
{
accept = ‘zaza’,
reward = ‘joint_zaza’,
anim = {
[‘dict’] = ‘anim@amb@business@weed@weed_inspecting_high_dry@’,
[‘lib’] = ‘weed_inspecting_high_base_inspector’,
},
},
},
[‘text’] = ‘Rolling joint’,
[‘timeOut’] = 5000,
[‘description’] = ‘Paper made specifically for encasing and smoking tobacco or cannabis.’,
},

1 Like

I was never able to pull this off with multiple rewards tied to one item, a simple workaround is to make the rolling paper an acceptable item for the strain and reward the desired joint through there.

How about changing the client / serversided code rather then the config file?

aaaaah I see wow I should’ve thought of that lol thanks!

Haha no problem, glad I could help!

1 Like