• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

Help the N00b!Plz

Status
Not open for further replies.
Level 4
Joined
Jul 14, 2004
Messages
49
FIrstly i need help(or tutorials)about spell triggers.... :oops:
Secondly How do i set the starting gold and lumber(not for all the players)????????I want Certain players to have f.e.100000 gold and 100000 lumber,how can i do it?????
 
Level 3
Joined
Apr 17, 2004
Messages
42
Need help with what triggers?

2nd
passed game time 0 : 01 sec
-
player set xxx gold to xxx

I'm german so I can't explain good in english if you still need help just send me the map and ill do it for ya :D
 
Level 1
Joined
Jul 21, 2004
Messages
7
Trigger that sets the starting resources for one player. The actions ofr setting gold and lumber are "Player - Set Property".

Code:
Trigger 1
    Events
        Map initialization
    Conditions
    Actions
        Player - Set Player 1 (Red) Current gold to 50
        Player - Set Player 1 (Red) Current lumber to 20

Trigger for giving all players the same sarting resources. This trigger uses a "For Each Integer A, Do Multiple Actions" loop.

Code:
Trigger 2
    Events
        Map initialization
    Conditions
    Actions
        For each (Integer A) from 1 to 12, do (Actions)
            Loop - Actions
                Player - Set (Player((Integer A))) Current gold to 50
                Player - Set (Player((Integer A))) Current lumber to 20

I suggest that you play aorund with the trigger editor and look in FAQs or ask in forums for specific things that you don't understand. I think that there could be some good tutorials too, but I don't use tutorials myslef (or write any) so I don't know.

A FAQ about triggers
 
Level 5
Joined
Jul 11, 2004
Messages
183
Stathis said:
FIrstly i need help(or tutorials)about spell triggers.... :oops:
Secondly How do i set the starting gold and lumber(not for all the players)????????I want Certain players to have f.e.100000 gold and 100000 lumber,how can i do it?????

Look like ya starting to learn how to make a custom map aren't you ? ..look when i was makin my first map and learning triggers/spell/sepecial effects, i used to playing around with all those stuffs and seriously i did not ask no one for helps in the first map, i even make my own save/load system, and stuff, listen to me i dont know if ya new to map making but if so then try to playing around with World edit, triggers, and blah blah, you will get use to it after if you need help on forum then its will be eazy to understand, also you can even learn yourself,,,,
 
Status
Not open for further replies.
Top