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

[JASS] Fullscreen GUI

Status
Not open for further replies.
Level 7
Joined
May 6, 2005
Messages
390
Linera said:
Can anyone send me the fullscreen GUI, don't confuse this with the fullscreen inventory. The Fullscreen Inventory was made with a Fullscreen GUI.

If you felt like you had the time to read the inv_100 readme, you would find the URL.
 
Level 6
Joined
Oct 6, 2005
Messages
203
YOU 2 ACT LIKE 2 YEAR OLDS

Just stop fighting... and can someone get the address for the fullscreen GUI please...
 
Level 9
Joined
Aug 27, 2004
Messages
471
Vex, i thought you were better than flaming :/. And fullscreen gui uses trackables, im still trying to reproduce it. Vex wont help, though hes probably one of the few who can understand what the hell that fullscreen thing says >.>. I just got into jass and its way to confusing to try and replicate something so big.

Trackables are simple in idea, but complicated to make:

(Dont trust me to much on this, this is my gui after all >.>)
Code:
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

Should make a trackable in the center of the map (I dont know what im doing so it doesnt work >.>)

The idea though is simple.
CreateTrackable uses: File, Real, Real, Integer.
File = Modelfile
Real1 = X of point
Real2 = Y of point
Integer = ...?Size or something.

Now you need to make the mouse tracker (Still lost)

Mouse handler/hover (still lost)

And EVERY SINGLE icon you want (Takes about 4 minutes/icon >.> 273 icons...)

Im still trying to get help, but if we bug the guy enough he should reveal his secret :p.
(Ps: Dont stop trying to make a trackable grid, someday! We WILL find out the secret!
 
Level 3
Joined
Mar 27, 2004
Messages
70
There is no "secret" to making a trackable grid.
There is a tutorial here, that explains you how to use trackables.
If you download the example map there, you can see how to make a trackable grid.
 
Status
Not open for further replies.
Top