I apologize, but I want to know from you. Is it possible to somehow increase the drop chance of an item from bosses? By their ID?nuzamacuxe wrote:Yes, it's possible.alex12333 wrote:Hello! There is one question!nuzamacuxe wrote:Fixed.
Is it possible to find out in this map what items are needed to craft items that are not in the item description. Let's say a thing in the Midas Glove card. To collect it, you need six different stones scattered around the map at the bosses. But nothing is written about it. And there are many such items. Is it possible to find out somehow? In the map editor or in the jass editor. If there is information how to do this, can you share your knowledge or a link to the information?
1. Download the war3map.j at attachments;
2. Open it up on JassCraft or NotePad++;
3. Look for (CTRL + F): function Craft_Actions;
4. Now just look for the desired item which you want to know how to craft.
4.1. Example: You want to craft Иридиевый Лук Elite (its id is: I0RX) [use the item-Cleaned.txt to get the ids or the -sitem command from my cp as mentioned above];
4.2. We can find how to craft it here:4.3. The first three ids (I0RJ, I0M8, I0RP) are the items which you need to craft Иридиевый Лук Elite.
Code: Select all
if UnitHas(uc,'I0RJ')then if UnitHas(uc,'I0M8')then if UnitHas(uc,'I0RP')then call UnitAddItemByIdSwapped('I0RX',uc)
[JJCP + RC] PRN Underworld ORPG[A.6]
Moderator: Cheaters
-
- Newcomer
- Posts: 12
- Joined: September 9th, 2019, 5:28 pm
Re: [JJCP + RC] PRN Underworld ORPG[A.6]
-
- Also Not an Admin, but closer than devoltz
- Posts: 1655
- Joined: February 14th, 2018, 5:35 am
- Title: Just Another S.Mod
- Been thanked: 6 times
-
- Newcomer
- Posts: 12
- Joined: September 9th, 2019, 5:28 pm
Re: [JJCP + RC] PRN Underworld ORPG[A.6]
did not understand you? Hello, the issue has not been resolved. Does anyone know how to increase the drop chance of certain items by their identifier?nuzamacuxe wrote:Probably so.
-
- Also Not an Admin, but closer than devoltz
- Posts: 1655
- Joined: February 14th, 2018, 5:35 am
- Title: Just Another S.Mod
- Been thanked: 6 times
Re: [JJCP + RC] PRN Underworld ORPG[A.6]
lol... "the issue has not been resolved"... what issue? There's no issue here. Seems like you don't understand english. As I said, probably there's a way... just check the .j file.
-
- Newcomer
- Posts: 12
- Joined: September 9th, 2019, 5:28 pm
Re: [JJCP + RC] PRN Underworld ORPG[A.6]
Yes, I do not understand English well. But the problem is that war3map.j does not have this. There is where it falls and how it is going. But how to raise a chance there.