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

[General] Got problem with WE...

Status
Not open for further replies.
Level 1
Joined
Jun 13, 2013
Messages
5
Hello guys,this is my first post on this forum,i'm tracking the site for like 2-3 months now and i got problem atm.

last night i was making some map,anyway i excidently clicked something on my keyboard and all names exampe ''tome of power'' item pickup changed to ''ee26b tome of power'' everything not only items,hero names,hero spells changed to like AAA32 how i can fix this,please help me..
 
Level 1
Joined
Jun 13, 2013
Messages
5
going to check it on laptop,will post back the result,thanks in advance
 
Level 1
Joined
Jun 13, 2013
Messages
5
okey,its working.thanks,
i got another question:
my map got 2 teams,i made 3 regions (tavern pickup region) region for spawning one team players,and region to spawn second team players,i'm trying for 30mins to get it working,but failing hard,can any1 just tell me where is the problem? i think it should be like this "if unit owned by player1(red) ---> region 1" or "if unit owned by player 5(purple) ---> region 2" can any1 help..
 
Level 1
Joined
Jun 13, 2013
Messages
5

my pc ''loader'' or cd boot aint working,i dont have warcraft 3 at pc,i'm mapping from my laptop,and laptop is in another house,so it will take few hours untill i get connection and everything up,i dont ask to some1 write code for me,just guide me to right way ;) i done pretty much python programming and i know how its working,i was trying to find right condition like ''if units owned by player red ---> region 1 " but cant find it anywheres though.
 
Level 1
Joined
Jun 13, 2013
Messages
5
i made it like this:

sold unit move to region 1
cam move to region 1


thats the actions

but,how can i make to map first check in which team player is,and then send it to right region team 1 = region 1 team 2 = region 2,so if player 1 pick hero he should be transfered to region 1,and player from team 2 should be transfered to region 2...

edit:i havent put any conditions,and i think i need one that will state in which player goes to which region,just cant figure out how to make it..
 
Level 23
Joined
Oct 20, 2012
Messages
3,075
Use the condition = Player Comparison to check which player is which and the OR condition Doomlord mentioned.

  • Untitled Trigger 001
    • Events
      • Unit - A unit enters Region 000 <gen>
    • Conditions
    • Actions
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • Or - Any (Conditions) are true
            • Conditions
              • (Owner of (Triggering unit)) Equal to Player 1 (Red)
              • (Owner of (Triggering unit)) Equal to Player 2 (Blue)
              • (Owner of (Triggering unit)) Equal to Player 3 (Teal)
              • (Owner of (Triggering unit)) Equal to Player 4 (Purple)
              • (Owner of (Triggering unit)) Equal to Player 5 (Yellow)
              • (Owner of (Triggering unit)) Equal to Player 6 (Orange)
        • Then - Actions
          • Unit - Move (Triggering unit) instantly to (Center of Region 002 <gen>)
          • Camera - Pan camera for (Owner of (Triggering unit)) to (Center of Region 002 <gen>) over 0.00 seconds
        • Else - Actions
          • Unit - Move (Triggering unit) instantly to (Center of Region 001 <gen>)
          • Camera - Pan camera for (Owner of (Triggering unit)) to (Center of Region 001 <gen>) over 0.00 seconds
 
Status
Not open for further replies.
Top