#1
LineraCan anyone send me the fullscreen GUI, don't confuse this with the fullscreen inventory. The Fullscreen Inventory was made with a Fullscreen GUI.
LineraThe only download on http://dimon.xgm.ru/fsgui/ is the Fullscreen Inventory system
LineraThe Fullscreen GUI is multiplayer ready, and it doesn't take up much space on the map.
function CT takes string UnittypeEX, integer X, integer Y returns nothing
local string UnittypeX
set UnittypeX = (UnittypeEX+".mdx")
call CreateTrackable(UnittypeEX, X, Y, 10)
endfunction
//===========================================================================
function InitTrig_Test2 takes nothing returns nothing
local string UnittypeEX
local real x
local real y
call DisplayTimedTextToForce( bj_FORCE_PLAYER[0], 5.00, "W00t" )
set y = GetLocationY(GetRectCenter(GetPlayableMapRect()))
set x = GetLocationX(GetRectCenter(GetPlayableMapRect()))
set UnittypeEX = "Doodads\\LordaeronSummer\\Terrain\\StoneWall135\\StoneWall135"
set gg_trg_Test2 = CreateTrigger( )
call TriggerRegisterPlayerChatEvent( gg_trg_Test2, Player(0), "-test", false )
endfunction