Need help with recipe
Moderator: Nizari
Need help with recipe
I use this plugin and I'm trying to create a recipe to roll gcs directly from bag.
I'd appreciate some help, thanks in advance.
I found this requires advanced CE because of the item level problem and adding a new mod item to recipe will read only first input of the recipe.
I'd appreciate some help, thanks in advance.
I found this requires advanced CE because of the item level problem and adding a new mod item to recipe will read only first input of the recipe.
Last edited by Rexxar on Tue Jan 01, 2019 11:29 pm, edited 4 times in total.
-
- Posts: 2
- Joined: Mon Dec 03, 2018 3:37 pm
Read more
Assuming this is a real question, you simply use the READ command to get input from a user, and the WRITE command to prompt with the old value.
Re: Need help with recipe
Kellyphymn, mind elaborating this according to the progress I posted so far?
can anyone help?
can anyone help?
-
- Posts: 2
- Joined: Sat Dec 10, 2016 9:25 pm
Re: Need help with recipe
I havent done modding in a while but.. maybe I can help you out.
I assume that if you are using a gembag type system in your mod.. you have the extractors items at like gheed?
Why not do something like this...
GC + Extractor (of whatever type) = Rerolled GC + gembag (with -3 to the stat of pgem of the extractor) Use cube ops "19 item stat(param) < value" (fail recipe if)
This would save you from having to make extra "items" to store gc info, etc... and would fail safe against abuse of trying to use it with no Pgems stored. You might just have to test to see if that is the correct cubeops... again... havent fooled around with D2modding for a while.
I assume that if you are using a gembag type system in your mod.. you have the extractors items at like gheed?
Why not do something like this...
GC + Extractor (of whatever type) = Rerolled GC + gembag (with -3 to the stat of pgem of the extractor) Use cube ops "19 item stat(param) < value" (fail recipe if)
This would save you from having to make extra "items" to store gc info, etc... and would fail safe against abuse of trying to use it with no Pgems stored. You might just have to test to see if that is the correct cubeops... again... havent fooled around with D2modding for a while.
Re: Need help with recipe
Barrgaming, thanks for your help. Yes, using this one viewtopic.php?f=4&t=62283&p=482784 and the extractor items are being sold by npcs like charsi, gheed.
Shouldn't I combine the GC + Gembag (taken from my inventory) and not the extractor? Since I want for the rolling to take the 3 gems out of the bag on each transmute.
If I'm transmuting the gc+extractor into rolled gc+gembag, where will the gembag come from exactly? Sounds like a new gembag will be generated instead of using the one from my inventory that has the collected gems inside.
Shouldn't I combine the GC + Gembag (taken from my inventory) and not the extractor? Since I want for the rolling to take the 3 gems out of the bag on each transmute.
If I'm transmuting the gc+extractor into rolled gc+gembag, where will the gembag come from exactly? Sounds like a new gembag will be generated instead of using the one from my inventory that has the collected gems inside.
-
- Posts: 2
- Joined: Sat Dec 10, 2016 9:25 pm
Re: Need help with recipe
Sorry, that is what I meant.
GC + Gembag + Extractor = Gc rerolled + Gembag -3 to (pgem of extractor type) stat
the only negative doing it this way would be that all 3 pgems would have to be the same unless you do like a cubemain line for every combination of extractor.. which is a huge waste of the file limit of cubemain.txt
GC + Gembag + Extractor = Gc rerolled + Gembag -3 to (pgem of extractor type) stat
the only negative doing it this way would be that all 3 pgems would have to be the same unless you do like a cubemain line for every combination of extractor.. which is a huge waste of the file limit of cubemain.txt
Re: Need help with recipe
I added the extractor to output too so however the biggest problem is that's not preserving the ilvl but ty for helping (i sent you a profile message too if you can check it as forum notifications are silent)
Right now as Necrolis was mentioning this doesn't really "rerolls" the charm but is used as a fixed imput to create a new charm because the operation inside cubemain tends to be on only one item input and not 2 so you would require to sort of make a new charm version for every charm type and ilvl and rarity
So far this does seem to require advanced CE
after discussing with harvestwobs about this it seems outbutb an outputc lvl columns always use the first input to calculate ilvl and while I can add the charm to use input1 then adding the bag as input2 will not make it possible to substract the mods off it so it's either using the charm or the bag as input1, can't have them both at the same time
Right now as Necrolis was mentioning this doesn't really "rerolls" the charm but is used as a fixed imput to create a new charm because the operation inside cubemain tends to be on only one item input and not 2 so you would require to sort of make a new charm version for every charm type and ilvl and rarity
So far this does seem to require advanced CE
after discussing with harvestwobs about this it seems outbutb an outputc lvl columns always use the first input to calculate ilvl and while I can add the charm to use input1 then adding the bag as input2 will not make it possible to substract the mods off it so it's either using the charm or the bag as input1, can't have them both at the same time