Page 1 of 2

[JJCP + RC] PRN Underworld ORPG[A.6]

Posted: October 6th, 2019, 4:46 pm
by alex12333
Map name: PRN Underworld ORPG[A.6]

https://www.epicwar.com/maps/297801/

Cheats: JJCP CP
And please extract the file Items-Cleaned.txt and units-cleaned.txt
And if you can remove all anti-hacks mh, exp and so on
Is it possible to somehow see from whom which drop falls
By quest or from bosses

Activator: wc3edit

Thanks in advance.

Re: [JJCP + RC] PRN Underworld ORPG[A.6]

Posted: October 6th, 2019, 11:35 pm
by nuzamacuxe
alex12333 wrote:Map name: PRN Underworld ORPG[A.6]

https://www.epicwar.com/maps/297801/

Cheats: JJCP CP
And please extract the file Items-Cleaned.txt and units-cleaned.txt
And if you can remove all anti-hacks mh, exp and so on
Is it possible to somehow see from whom which drop falls
By quest or from bosses

Activator: wc3edit

Thanks in advance.

Re: [JJCP + RC] PRN Underworld ORPG[A.6]

Posted: October 7th, 2019, 8:26 am
by alex12333
nuzamacuxe wrote:
alex12333 wrote:Map name: PRN Underworld ORPG[A.6]

https://www.epicwar.com/maps/297801/

Cheats: JJCP CP
And please extract the file Items-Cleaned.txt and units-cleaned.txt
And if you can remove all anti-hacks mh, exp and so on
Is it possible to somehow see from whom which drop falls
By quest or from bosses

Activator: wc3edit

Thanks in advance.


Maphak anti-cheat works. Can be corrected?

Re: [JJCP + RC] PRN Underworld ORPG[A.6]

Posted: October 7th, 2019, 7:28 pm
by nuzamacuxe
Fixed.

Re: [JJCP + RC] PRN Underworld ORPG[A.6]

Posted: October 9th, 2019, 8:49 am
by alex12333
nuzamacuxe wrote:Fixed.

Hello! There is one question!
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?

Re: [JJCP + RC] PRN Underworld ORPG[A.6]

Posted: October 9th, 2019, 10:28 am
by Sword
1: Insert NZCP : https://imgur.com/ejUqNmU , https://imgur.com/vNxBhNj , https://imgur.com/4qaZ5IT
2: Activate cheats : https://imgur.com/foNteEt
3: Enter "-sitem (ITEMNAME)" (Used "EЖизнь" as (ITEMNAME)) https://imgur.com/M9RKT9D
4: (PATH TO DOCUMENTS)Documents\Warcraft III\CustomMapData\[CP] ItemsExport
5: Open text file created https://imgur.com/1Epx8Se , https://imgur.com/LwjSzbJ

After finding name of item to be crafted, use

Code: Select all

-sitem
to find the itemID. Search itemID in the scripting file and find the line of code used to craft the item. Below is one example of a crafting system.

Code: Select all

function Craft takes unit crafter, integer result, integer item1, integer item2, integer item3, integer item4, integer item5, integer item6 returns boolean
.........
Craft(u, 'I000', 'I001', 'I001', 'I002', 'I003', 0, 0)


in simple terms, 'I000' is the item to be created, then 'I001', 'I001', 'I002', 'I003',.... would be the components to craft

Re: [JJCP + RC] PRN Underworld ORPG[A.6]

Posted: October 9th, 2019, 11:10 pm
by alex12333
Sword wrote:After finding name of item to be crafted, use

Code: Select all

-sitem
to find the itemID. Search itemID in the scripting file and find the line of code used to craft the item. Below is one example of a crafting system.

Code: Select all

function Craft takes unit crafter, integer result, integer item1, integer item2, integer item3, integer item4, integer item5, integer item6 returns boolean
.........
Craft(u, 'I000', 'I001', 'I001', 'I002', 'I003', 0, 0)


in simple terms, 'I000' is the item to be created, then 'I001', 'I001', 'I002', 'I003',.... would be the components to craft

Where to find it ??? in jass? or map editor?
that's what comes out of me after writing -sitem Мидас

Code: Select all

function PreloadFiles takes nothing returns nothing

   call Preload( "Item ID: I0I2 Name: |c00030303Перчатка Мидаса" )
   call Preload( "Item ID: I0S5 Name: |c00030303Перчатка Мидаса II" )
   call PreloadEnd( 12.5 )

endfunction



Re: [JJCP + RC] PRN Underworld ORPG[A.6]

Posted: October 9th, 2019, 11:20 pm
by nuzamacuxe
alex12333 wrote:
nuzamacuxe wrote:Fixed.

Hello! There is one question!
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?

Yes, it's possible.
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:

    Code: Select all

    if UnitHas(uc,'I0RJ')then
    if UnitHas(uc,'I0M8')then
    if UnitHas(uc,'I0RP')then
    call UnitAddItemByIdSwapped('I0RX',uc)
4.3. The first three ids (I0RJ, I0M8, I0RP) are the items which you need to craft Иридиевый Лук Elite.

Re: [JJCP + RC] PRN Underworld ORPG[A.6]

Posted: October 10th, 2019, 8:53 am
by alex12333
nuzamacuxe wrote:
alex12333 wrote:
nuzamacuxe wrote:Fixed.

Hello! There is one question!
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?

Yes, it's possible.
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:

    Code: Select all

    if UnitHas(uc,'I0RJ')then
    if UnitHas(uc,'I0M8')then
    if UnitHas(uc,'I0RP')then
    call UnitAddItemByIdSwapped('I0RX',uc)
4.3. The first three ids (I0RJ, I0M8, I0RP) are the items which you need to craft Иридиевый Лук Elite.

Thank! True, I did not find what I was looking for. Not there. Apparently this is done by a quest or collected in some specific place on the map. Thank you very much

Re: [JJCP + RC] PRN Underworld ORPG[A.6]

Posted: October 11th, 2019, 4:49 pm
by thejone
I want to pm