Newb Help

1Shredder1

New Member
Reaction score
1
Hi, I'm brand new to this forum and i had some problems with the world editor. Sorry if a thread like this already exists, but I didn't want to have to root through all the archives to find out. However, here's my problem: Whenever I test a map i made, I get an auto victory. Then, no matter what I do, I always start with a town hall (or race equivalent) and 5 peasants (or race equivalent). It's extremely frustrating and I haven't figured it out yet.:banghead: Please help! :eek:
 

skytainted

New Member
Reaction score
3
Oh, it's quite easy. I asked this question before when I was really new to the World Editor but now.. I'm still a average map-maker. I'll explain it to you.

Code:
Events
    Map initialization
Actions
    Melee Game - Use melee time of day (for all players)
    Melee Game - Limit Heroes to 1 per Hero-type (for all players)
    Melee Game - Give trained Heroes a Scroll of Town Portal (for all players)
    Melee Game - Set starting resources (for all players)
    Melee Game - Remove creeps and critters from used start locations (for all players)
    Melee Game - Create starting units (for all players)
    Melee Game - Run melee AI scripts (for computer players)
    Melee Game - Enforce victory/defeat conditions (for all players)

You see this trigger in the trigger editor right? (F4). Just delete this trigger.
Code:
Melee Game - Enforce victory/defeat conditions (for all players)

Quite Simple.

And for the Town Hall. Delete this triggers.
Code:
Melee Game - Create starting units (for all players)
Melee Game - Remove creeps and critters from used start locations (for all players)
 
B

benj_war3

Guest
Code:
Melee Game - Create starting units (for all players)
Melee Game - Remove creeps and critters from used start locations (for all players)
[/QUOTE]

You don't need to remove the creeps because it might remove the neutral passive units or allies who spawn there. You only need to delete this:
Code:
Melee Game - Create starting units (for all players)
 

vypur85

Hibernate
Reaction score
803
You don't need to remove the creeps because it might remove the neutral passive units or allies who spawn there. You only need to delete this:

o_O Actually it's easier to remove everything and start from scratch. It won't affect anything, unless of course you need those melee triggers.
 
B

benj_war3

Guest
That's what I do but he didn't ask the question.. So... I only said that thing.
 

wewso

New Member
Reaction score
11
READ vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv

I think that 1Shredder1s got it long ago (from skytainted's good explanation) but since everyone is giving their own ill give mine too.

It is very important to follow all the steps I have given you!

Step 1 - Going to the object editor

First you go to Unit Editor and you create a custom unit named "Dummy_Start_Location_Town_Hall_&_Worker_BOOOOM_BAANG_KILLER" (Its one word) based off of the Undead Ghost. You will have to change its Model File to one which you have inported earlier. The model must be chosen very carefully so that it cant be seen by the player, whos starting location we will be destroinig. You also have to make the model very smallso that it cant be selected easily by the palyer.

So we are finished with the "Dummy_Start_Location_Town_Hall_&_Worker_BOOOOM_BAANG_KILLER" and we have to continue with the dummy ability with which the "Dummy_Start_Location_Town_Hall_&_Worker_BOOOOM_BAANG_KILLER" will be BOOOOM_BAANG_KILLING the player's Town Hall and workers.

Make a custom ability based off of Rain of Fire (Neutral Hostile) and name it Robbert. If there is more than one player in the game you will have to rename the ability to Jack so that the W/E doesnt have to remember so many letters. You also have to change some of the fields >> Data - Damage - 4180.00 because thats the Specific heat at which one gram of water rises its temperature by 1C.

Lastly you have to put the dummy ability Robbert or Jack on Dummy_Start_Location_Town_Hall_&_Worker_BOOOOM_BAANG_KILLER so that it can cast it.

Step 2 - Now the triggers

First of all you have to rename the "Melee Initialization" trigger to "SACRET_TRIGGER_OF_LIFE_DO_NOT_DELETE" Because if you accidently delete it, Warcraft 3 will crash and become corrupted and you wont ever be able to play it again on your computer.

It should look stg like this>>
Code:
SACRET_TRIGGER_OF_LIFE_DO_NOT_DELETE
    Events
        Map initialization
    Conditions
    Actions
        -------- SACRED DATA --------
        Melee Game - Use melee time of day (for all players)
        -------- SACRED DATA --------
        Melee Game - Limit Heroes to 1 per Hero-type (for all players)
        -------- SACRED DATA --------
        Melee Game - Give trained Heroes a Scroll of Town Portal (for all players)
        -------- SACRED DATA --------
        Melee Game - Set starting resources (for all players)
        -------- SACRED DATA --------
        Melee Game - Remove creeps and critters from used start locations (for all players)
        -------- SACRED DATA --------
        Melee Game - Create starting units (for all players)
        -------- SACRED DATA --------
        Melee Game - Run melee AI scripts (for computer players)
        -------- SACRED DATA --------
        Melee Game - Enforce victory/defeat conditions (for all players)
        -------- SACRED DATA --------

Then you have create a new trigger which will spawn the Dummy KILLER and order it to act. For the purpose you need 2 unit varaibles >> ROBBERT and JACK

Code:
Spawning the dummy
    Events
        Map initialization
    Conditions
    Actions
        Unit - Create 1 Dummy_Start_Location_Town_Hall_&_Worker_BOOOOM_BAANG_KILLER for Neutral Passive at (Center of (Playable map area)) facing Default building facing degrees
        If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            If - Conditions
                (Number of players in (All players matching (((Matching player) slot status) Equal to Is playing))) Equal to 1
            Then - Actions
                Set ROBBERT = (Last created unit)
                Wait 2.00 seconds
                Unit - Order ROBBERT to Neutral - Robbert (Player 1 start location)
            Else - Actions
                Set JACK = (Last created unit)
                Wait 2.00 seconds
                Unit - Order JACK to Neutral - Jack (Player 1 start location)
                Wait 2.00 seconds
                Unit - Order JACK to Neutral - Jack (Player 2 start location)
                Wait 2.00 seconds
                Unit - Order JACK to Neutral - Jack (Player 3 start location)
                Wait 2.00 seconds
                Unit - Order JACK to Neutral - Jack (Player 4 start location)
                Wait 2.00 seconds
                Unit - Order JACK to Neutral - Jack (Player 5 start location)
                Wait 2.00 seconds
                Unit - Order JACK to Neutral - Jack (Player 6 start location)
                Wait 2.00 seconds
                Unit - Order JACK to Neutral - Jack (Player 7 start location)
                Wait 2.00 seconds
                Unit - Order JACK to Neutral - Jack (Player 8 start location)
                Wait 2.00 seconds
                Unit - Order JACK to Neutral - Jack (Player 9 start location)
                Wait 2.00 seconds
                Unit - Order JACK to Neutral - Jack (Player 10 start location)
                Wait 2.00 seconds
                Unit - Order JACK to Neutral - Jack (Player 11 start location)
                Wait 2.00 seconds
                Unit - Order JACK to Neutral - Jack (Player 12 start location)

Step 3 - Protection

Now you have to go to Edit > Convert to custom text so that you dont mess it up (I asume you dont know JASS).

Lastly you have to download the latest version of Vexorian map optimiser and protect the map so that no one can open it and find your secret unique way of removing Town Hall + Workors.


PS: 1Shredder1, thats not addresed to you and I am not making fun of you. Thats addressed to those, who keep posting in a thread that has its questions already answered. They all just say the same thing in in thier own words (Just like me :shades:)

I know that Im probably getting alot of - - - - Rep but some times i am out of my nerves. Sorry.
Good luck.
 

vypur85

Hibernate
Reaction score
803
Damn it. I'll +R you for making me smile and your effort in creating the long-winded useless triggers >.<. Don't do this again in the future... Lol...

And people: Please disregard post #9. The contents are not true.
 

1Shredder1

New Member
Reaction score
1
Wow, thanks for all the help. I haven't been able to try it out yet but I'll try on Saturday. It's been bugging me ever since i got ROC and TFT and i never figured it out. Again, thanks alot :D
 

joaoac

Active Member
Reaction score
11
Same as vypur85.

I am still laughing!!!!

Dude Wilson, I 'll try your trigger as soon as possible, lol!!!!!!!
(wewso = wilson, catch it?)
 

wewso

New Member
Reaction score
11
Well you have an interesting explanation of my nick, joaoac. But actualy it has nothing to do with Wilson, even though it may have something in common with my first name, that is slightly different. :shades:
 
General chit-chat
Help Users
  • Monovertex Monovertex:
    How are you all? :D
    +1
  • Ghan Ghan:
    Howdy
  • Ghan Ghan:
    Still lurking
    +3
  • The Helper The Helper:
    I am great and it is fantastic to see you my friend!
    +1
  • The Helper The Helper:
    If you are new to the site please check out the Recipe and Food Forum https://www.thehelper.net/forums/recipes-and-food.220/
  • Monovertex Monovertex:
    How come you're so into recipes lately? Never saw this much interest in this topic in the old days of TH.net
  • Monovertex Monovertex:
    Hmm, how do I change my signature?
  • tom_mai78101 tom_mai78101:
    Signatures can be edit in your account profile. As for the old stuffs, I'm thinking it's because Blizzard is now under Microsoft, and because of Microsoft Xbox going the way it is, it's dreadful.
  • The Helper The Helper:
    I am not big on the recipes I am just promoting them - I use the site as a practice place promoting stuff
    +2
  • Monovertex Monovertex:
    @tom_mai78101 I must be blind. If I go on my profile I don't see any area to edit the signature; If I go to account details (settings) I don't see any signature area either.
  • The Helper The Helper:
    You can get there if you click the bell icon (alerts) and choose preferences from the bottom, signature will be in the menu on the left there https://www.thehelper.net/account/preferences
  • The Helper The Helper:
    I think I need to split the Sci/Tech news forum into 2 one for Science and one for Tech but I am hating all the moving of posts I would have to do
  • The Helper The Helper:
    What is up Old Mountain Shadow?
  • The Helper The Helper:
    Happy Thursday!
    +1
  • Varine Varine:
    Crazy how much 3d printing has come in the last few years. Sad that it's not as easily modifiable though
  • Varine Varine:
    I bought an Ender 3 during the pandemic and tinkered with it all the time. Just bought a Sovol, not as easy. I'm trying to make it use a different nozzle because I have a fuck ton of Volcanos, and they use what is basically a modified volcano that is just a smidge longer, and almost every part on this thing needs to be redone to make it work
  • Varine Varine:
    Luckily I have a 3d printer for that, I guess. But it's ridiculous. The regular volcanos are 21mm, these Sovol versions are about 23.5mm
  • Varine Varine:
    So, 2.5mm longer. But the thing that measures the bed is about 1.5mm above the nozzle, so if I swap it with a volcano then I'm 1mm behind it. So cool, new bracket to swap that, but THEN the fan shroud to direct air at the part is ALSO going to be .5mm to low, and so I need to redo that, but by doing that it is a little bit off where it should be blowing and it's throwing it at the heating block instead of the part, and fuck man
  • Varine Varine:
    I didn't realize they designed this entire thing to NOT be modded. I would have just got a fucking Bambu if I knew that, the whole point was I could fuck with this. And no one else makes shit for Sovol so I have to go through them, and they have... interesting pricing models. So I have a new extruder altogether that I'm taking apart and going to just design a whole new one to use my nozzles. Dumb design.
  • Varine Varine:
    Can't just buy a new heatblock, you need to get a whole hotend - so block, heater cartridge, thermistor, heatbreak, and nozzle. And they put this fucking paste in there so I can't take the thermistor or cartridge out with any ease, that's 30 dollars. Or you can get the whole extrudor with the direct driver AND that heatblock for like 50, but you still can't get any of it to come apart
  • Varine Varine:
    Partsbuilt has individual parts I found but they're expensive. I think I can get bits swapped around and make this work with generic shit though
  • Ghan Ghan:
    Heard Houston got hit pretty bad by storms last night. Hope all is well with TH.

      The Helper Discord

      Members online

      No members online now.

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top