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

[JASS] About trackables

Status
Not open for further replies.
Level 16
Joined
Mar 3, 2006
Messages
1,564
May be, if you enable some aspects that I will mention soon.

Wait for an edit.
________
__EDIT__

Sadly, no, or at least what my test shows:

JASS:
function Trig_Untitled_Trigger_001_Actions takes nothing returns nothing
    call CinematicModeBJ( true, GetPlayersAll() )
    call EnableUserControl(true)
    call EnableSelect( true, true )
    call EnableUserUI(true)
endfunction

//===========================================================================
function InitTrig_Untitled_Trigger_001 takes nothing returns nothing
    set gg_trg_Untitled_Trigger_001 = CreateTrigger(  )
    call TriggerRegisterPlayerChatEvent( gg_trg_Untitled_Trigger_001, Player(0), "c", true )
    call TriggerAddAction( gg_trg_Untitled_Trigger_001, function Trig_Untitled_Trigger_001_Actions )
endfunction
The trackables were already made, its a full screen inventory, my code only enabled the screen scrolling and show the mouse but I was unable to click on any trackable.
 
Last edited:
Status
Not open for further replies.
Top