• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

[Trigger] What is the triggers that make people become werewolf randomly?

Status
Not open for further replies.
Level 2
Joined
Nov 11, 2012
Messages
9
I want to create a new map, but I need the triggers that make people become ghost randomly like Werewolf Transylvania, so please help me. What is the triggers that make people become werewolf or ghost randomly...
 
Level 33
Joined
Mar 27, 2008
Messages
8,035
Suppose each player will have 1 Worker.
Initially, we would assign each of them in a Unit Array (for later reference).
Unit[1] = Player 1's Worker
Unit[2] = Player 2's Worker
...
Unit[12] = Player 12's Worker

When at night, random number (between 1 ~ 12) will be rolled.
This number will determine which player is picked.

Let's say we roll and got number 5, that means Player 5 will become werewolf.
This means, use the transformation to Unit[5].

I only know a bit about Werewolf Transylvania, perhaps you could tell us more about this event ?

I have created a test map about the werewolf transformation, see if it suits your needs.
 

Attachments

  • Werewolf Transylvania.w3x
    13.8 KB · Views: 58
Status
Not open for further replies.
Top