removing an item in heroes inventory

BacTyrael

New Member
Reaction score
1
What are you guys going on about? ..
Just assign a variable to the item and then remove it when you please, like I said some 10 posts above this one. Shouldn't be a problem.

sorry i avoided this answer because i suck at variables. But i will learn and do so thx.
 

BacTyrael

New Member
Reaction score
1
uh exide could you point me toward a tutorial or something. Im not sure if the item type variable should have a trigger or how to remove it once ive established its value.
 

Exide

I am amazingly focused right now!
Reaction score
448
Try this trigger:

Trigger:
  • Events
    • Unit - A unit aquires an item
    • Conditions
    • Item type of (Item being manipulated) Equal to *Your_Flag_Item*
    • Actions
    • set *Item_Variable* = (Item being manipulated)
    • Wait 30 seconds
    • If (Triggering Unit) has *Item_Variable*
    • then
    • Item - Remove *Item_Variable*
    • Game - Display to (All players) for 4.00 seconds the text: The flag has been r...
    • Sound - Play VictorySound
    • else
 

BacTyrael

New Member
Reaction score
1
Try this trigger:

Trigger:
  • Events
    • Unit - A unit aquires an item
    • Conditions
    • Item type of (Item being manipulated) Equal to *Your_Flag_Item*
    • Actions
    • set *Item_Variable* = (Item being manipulated)
    • Wait 30 seconds
    • If (Triggering Unit) has *Item_Variable*
    • then
    • Item - Remove *Item_Variable*
    • Game - Display to (All players) for 4.00 seconds the text: The flag has been r...
    • Sound - Play VictorySound
    • else

i cannot find the
Trigger:
  • If (Triggering Unit) has *Item_Variable*
condition for the life of me.
 

Exide

I am amazingly focused right now!
Reaction score
448
It should be under Boolean comparison, or Item Comparison.
I wrote the trigger on top of my mind, since I don't have WE with me atm.
It should be something like: 'Unit/Hero has Item'.
 

BacTyrael

New Member
Reaction score
1
It should be under Boolean comparison, or Item Comparison.
I wrote the trigger on top of my mind, since I don't have WE with me atm.
It should be something like: 'Unit/Hero has Item'.

so has is really equal to?
 

BacTyrael

New Member
Reaction score
1
Trigger:
  • ((Triggering unit) has an item of type Flag_Horde_Remove) Equal to True
i will update this post when im down with the trigger.
 

Exide

I am amazingly focused right now!
Reaction score
448
so has is really equal to?

I don't know what you just said, but I found out what the condition really looks like:

Trigger:
  • Conditions
    • ((Triggering unit) has *Item_Variable*) Equal to True


EDIT: Don't use 'Item of Type', it's not the same as 'Item'.
 

BacTyrael

New Member
Reaction score
1
I don't know what you just said, but I found out what the condition really looks like:

Trigger:
  • Conditions
    • ((Triggering unit) has *Item_Variable*) Equal to True


EDIT: Don't use 'Item of Type', it's not the same as 'Item'.
found it!
 

Exide

I am amazingly focused right now!
Reaction score
448
It is just next to 'Item of Type'. :p

If you still can't find it, you can use 'Item of Type', but then you might as well remove the Item Variable completely.

Do you have Reign of Chaos or The Frozen Throne?
 

BacTyrael

New Member
Reaction score
1
Trigger:
  • Horde Flag Time Return
    • Events
      • Unit - A unit Acquires an item
    • Conditions
      • (Item-type of (Item being manipulated)) Equal to Orc Flag
    • Actions
      • Set Flag_Horde_Remove = (Item being manipulated)
      • Wait 30.00 seconds
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • ((Triggering unit) has Flag_Horde_Remove) Equal to True
        • Then - Actions
          • Item - Remove Flag_Horde_Remove
          • Game - Display to (All players) for 4.00 seconds the text: The flag has been r...
          • Sound - Play VictorySound
        • Else - Actions


that look correct?
 

Dest

New Member
Reaction score
26
Trigger:
  • Horde Flag Time Return
    • Events
      • Unit - A unit Acquires an item
    • Conditions
      • (Item-type of (Item being manipulated)) Equal to Orc Flag
    • Actions
      • Set Flag_Horde_Remove = (Item being manipulated)
      • Wait 30.00 seconds
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • ((Triggering unit) has Flag_Horde_Remove) Equal to True
        • Then - Actions
          • Item - Remove Flag_Horde_Remove
          • Game - Display to (All players) for 4.00 seconds the text: The flag has been r...
          • Sound - Play VictorySound
        • Else - Actions


that look correct?

I think it looks correct... but in a original CTP game, you bring a flag and you take it to a circle before you die... why is your trigger different? o_O
 

Exide

I am amazingly focused right now!
Reaction score
448
that look correct?

Yes it does. Try it and see if it does what you want.

Now, may I ask what the meaning of this trigger is? :p
If a unit picks up the Orc Flag, it waits 30 seconds then the flag is removed + a message is displayed.
No score counter or anything?
 

BacTyrael

New Member
Reaction score
1
I think it looks correct... but in a original CTP game, you bring a flag and you take it to a circle before you die... why is your trigger different? o_O

its made so you cant turn the flag in if your flag is missing and this whole troublesome trigger was to return the flag if its been gone for to long. but if it resets the timer after its acquired again i will have to figure a way around this all over again.
 

BacTyrael

New Member
Reaction score
1
well it works and this should prevent it from being reset because its a variable right?
 

Exide

I am amazingly focused right now!
Reaction score
448
well it works and this should prevent it from being reset because its a variable right?

Well, I'm not quite sure what you want to do here.
Is there more than one flag in the game?
If a unit picks up the flag, waits 20 seconds, drops the flag and picks it up again it might be removed within 10 seconds. (Bug.)

To fix that you should use a timer, and variable. Then you'll need another trigger.
 

Dest

New Member
Reaction score
26
its made so you cant turn the flag in if your flag is missing and this whole troublesome trigger was to return the flag if its been gone for to long. but if it resets the timer after its acquired again i will have to figure a way around this all over again.

Every CTP games have two circles and two flags and 8 people. The person who has the flag brings to the circle for points. It works vica versa. :p

But, why don't your trigger has to give points?
 

BacTyrael

New Member
Reaction score
1
you get points i would have to post all of them they are probably more work then i should've done. and could have been done with variables. and yeah it resets itself when i have the strength i will learn how to incorporate a timer with it.
 
General chit-chat
Help Users
  • No one is chatting at the moment.

      The Helper Discord

      Staff online

      Members online

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top