Hi fellas
my mate and I like to play maps like helms deep or other multiplayer maps solo. So often it is necessary to change the amount of starting gold or items. But I dont know how?
I already figured it out to deprotecd the maps with xdep but I guess it has something to do with the trigger editor? Is that right?
Do I need something special to change the triggers?
Totally noob question for map editing
Moderator: Cheaters
-
- Newcomer
- Posts: 3
- Joined: January 30th, 2020, 8:23 am
-
- Shopping Maul USA Creator
- Posts: 1759
- Joined: January 18th, 2007, 11:07 am
- Title: No Comment
- Location: Calgary Canada
- Has thanked: 45 times
- Been thanked: 8 times
Re: Totally noob question for map editing
There are a few tutorials how to add a cheatpack to your map such as these:
http://forum.wc3edit.net/tutorials-chea ... t5134.html
You can also try to insert your own cheatpack here:
http://forum.wc3edit.net/tutorials-chea ... t2913.html
This can allow you to get gold right away, and maybe spawn the items you need.
http://forum.wc3edit.net/tutorials-chea ... t5134.html
You can also try to insert your own cheatpack here:
http://forum.wc3edit.net/tutorials-chea ... t2913.html
This can allow you to get gold right away, and maybe spawn the items you need.
-
- Newcomer
- Posts: 3
- Joined: January 30th, 2020, 8:23 am
Re: Totally noob question for map editing
Thanks for the quick answer.
I dont search for cheats to insert I just want to change the starting Gold from 2000 to 200000 for example.
Those cheat packs just add things who are not there or way above the maximum.
I dont search for cheats to insert I just want to change the starting Gold from 2000 to 200000 for example.
Those cheat packs just add things who are not there or way above the maximum.
-
- Cheater
- Posts: 185
- Joined: February 7th, 2013, 5:04 am
- Title: Skid
Re: Totally noob question for map editing
http://forum.wc3edit.net/tutorials-chea ... 35504.html
This should be more useful in your case.
If you want to edit the script(war3map.j file), then you probably will need to read other tutorials in Tutorials & Cheatpacks section
This should be more useful in your case.
If you want to edit the script(war3map.j file), then you probably will need to read other tutorials in Tutorials & Cheatpacks section
-
- Newcomer
- Posts: 3
- Joined: January 30th, 2020, 8:23 am
Re: Totally noob question for map editing
But where are those settings located? Just the startmoney?
-
- 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: Totally noob question for map editing
If you want to edit the items you should just extract the war3map.t and then import it into World Editor just like so:
After you do the edits, click on "Export Item Settings", save and reinsert the war3map.t edited into the map.
Now if you want just simple start with X amount of gold then just do this:
1. Open the map with MPQ Editor (you can download it here: http://www.zezula.net/en/mpq/download.html);
2. Select a random listfile (you can download one from here: useful-tools-f69/listfiles-t13941-40.html#p194354)
3. Look for a file called war3map.j and drop it into your folder.
4. Now open up JassCraft and select the war3map.j (you can download JassCraft here: http://forum.wc3edit.net/useful-tools-f ... 36560.html).
5. Since you are new and don't know how to code in JASS I'll just do a code which you can simply ctrl + c and ctrl + v to every map which you want to start with X gold. That's the code:
First part:
Second part:
Spoiler:
Now if you want just simple start with X amount of gold then just do this:
1. Open the map with MPQ Editor (you can download it here: http://www.zezula.net/en/mpq/download.html);
Spoiler:
Spoiler:
Spoiler:
Spoiler:
First part:
Code: Select all
function StartGold takes nothing returns nothing
local integer i = 0
loop
call SetPlayerState( Player( i ), PLAYER_STATE_RESOURCE_GOLD, PUT YOUR DESIRED AMOUNT HERE )
set i = i + 1
exitwhen i == bj_MAX_PLAYER_SLOTS
endloop
endfunction
Code: Select all
call StartGold()
- 5.1. Press CTRL + F, search for "function main" and paste the first part of the code above the function main.
Spoiler:
- 5.1.2. For example, if you want to start with 50.000 gold just edit that part of the code like so:
Spoiler:
Spoiler:- 5.2.1. NOTE: If your map has a local(s) in function main, put the second part of the code directly below them.
Spoiler:
5.4. Now it's time to test. Open up Warcraft 3 and start a game with the map.Spoiler:- 5.4.1 NOTE: To check if you did everything right, the map will show all the player slots. If the map does not has player slots, or does not has the correct player slots, then something was probably done incorrectly, which you can confirm by trying to start the game. If the game won't start, try editing a fresh/new copy of the map again!
Spoiler:
Spoiler: - 5.1.2. For example, if you want to start with 50.000 gold just edit that part of the code like so:
-
- Newcomer
- Posts: 5
- Joined: February 19th, 2020, 3:32 am
Re: Totally noob question for map editing
So if i want to change the models for pokemon world i would need to DL JassCraft and MPQ Editor? i Think it would be a big hit to people if they could use proper looking models for the game.
-
- Newcomer
- Posts: 6
- Joined: February 17th, 2020, 12:31 pm
Re: Totally noob question for map editing
i need Hero of the empire 1.25b edit finished, i need just first game gold 20k, and now gold 980 so hard TT.
-
- Super Moderator
- Posts: 1943
- Joined: February 3rd, 2009, 11:28 pm
- Been thanked: 1 time
Re: Totally noob question for map editing
Longpet003, feel free to make your own thread if you want to find out how to make a specific modification to a game. We're more than happy to teach.
-
- Newcomer
- Posts: 6
- Joined: February 17th, 2020, 12:31 pm