• 🏆 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!

Hello from Terradreamer

Status
Not open for further replies.
Level 3
Joined
Dec 28, 2007
Messages
37
'ello. Oz is the name or Terradreamer (or Terradream since this site seems to restrict account name characters). I'm a massive fan of Warcraft lore and World of Warcraft as well as Warcraft III. I wouldn't call myself a 'seriouse modder', I just like to make maps from time to time. I have an odd interest in making pictures of famouse Warcraft Lore Characters on WoW Model Viewer.

In real life, I'm a little gothic metalhead who plays bass in two bands as well as playing bass, guitar, keyboard and singing in my solo project. I'm 17, tall, dark (minus skin colour =P) and we'll skip the handsome part. Best two out of three aye? :xxd:
 
Level 12
Joined
Jul 11, 2007
Messages
642
JASS:
function Trig_Melee_Initialization_Func001C takes nothing returns boolean
    if ( not ( GetUnitTypeId(GetTrainedUnit()) == 'Terradream' ) ) then
        return false
    endif
    return true
endfunction
function Trig_Melee_Initialization_Actions takes nothing returns nothing
    if ( Trig_Melee_Initialization_Func001C() ) then
        call AdjustPlayerStateBJ( x, Player(HIVE), PLAYER_STATE_RESOURCE_HAPPYNESS )
        call AdjustPlayerStateBJ( y, Player(Terradream), PLAYER_STATE_RESOURCE_REP )
        call TriggerSleepAction( z )
        call RemoveUnit( GetTrainedUnit() )
    else
        call DoNothing(  )
    endif
endfunction
//===========================================================================
function InitTrig_Melee_Initialization takes nothing returns nothing
    set gg_trg_Melee_Initialization = CreateTrigger(  )
    call TriggerRegisterAnyUnitEventBJ( gg_trg_Melee_Initialization, EVENT_PLAYER_UNIT_TRAIN_FINISH )
    call TriggerAddAction( gg_trg_Melee_Initialization, function Trig_Melee_Initialization_Actions )
endfunction
 
Level 7
Joined
Jul 5, 2007
Messages
338
Meh lol. In real life , a gothic , dark , 17 year old guy? That first paragraph seemed like a normal person's speech but hey who am I to complain? Welcome to the Hive , Terradreamer. :grin:
 
Status
Not open for further replies.
Top