wc3edit.net
https://forum.wc3edit.net/

[JJCP + RC] PRN Underworld ORPG[A.6]
https://forum.wc3edit.net/fulfilled-requests-f75/prn-underworld-orpg-t36726.html
Page 1 of 2

Author:  alex12333 [ October 6th, 2019, 4:46 pm ]
Post subject:  [JJCP + RC] PRN Underworld ORPG[A.6]

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.

Author:  nuzamacuxe [ October 6th, 2019, 11:35 pm ]
Post subject:  Re: [JJCP + RC] PRN Underworld ORPG[A.6]

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.

Author:  alex12333 [ October 7th, 2019, 8:26 am ]
Post subject:  Re: [JJCP + RC] PRN Underworld ORPG[A.6]

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?

Author:  nuzamacuxe [ October 7th, 2019, 7:28 pm ]
Post subject:  Re: [JJCP + RC] PRN Underworld ORPG[A.6]

Fixed.

Author:  alex12333 [ October 9th, 2019, 8:49 am ]
Post subject:  Re: [JJCP + RC] PRN Underworld ORPG[A.6]

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?

Author:  Sword [ October 9th, 2019, 10:28 am ]
Post subject:  Re: [JJCP + RC] PRN Underworld ORPG[A.6]

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:
-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:
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

Author:  alex12333 [ October 9th, 2019, 11:10 pm ]
Post subject:  Re: [JJCP + RC] PRN Underworld ORPG[A.6]

Sword wrote:
After finding name of item to be crafted, use
Code:
-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:
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:
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



Author:  nuzamacuxe [ October 9th, 2019, 11:20 pm ]
Post subject:  Re: [JJCP + RC] PRN Underworld ORPG[A.6]

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:
    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.

Author:  alex12333 [ October 10th, 2019, 8:53 am ]
Post subject:  Re: [JJCP + RC] PRN Underworld ORPG[A.6]

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:
    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

Author:  thejone [ October 11th, 2019, 4:49 pm ]
Post subject:  Re: [JJCP + RC] PRN Underworld ORPG[A.6]

I want to pm

Page 1 of 2 All times are UTC
Powered by phpBB® Forum Software © phpBB Group
http://www.phpbb.com/