Chasester_aka_you | 2014-07-20 08:00
New Ent Gui
17
points ]
 (3 votes)
A simple gui upgrade

A simple mod that allows better controls from the entedit gui menu (f3).

installation:
download file and replace menus.cfg,
or
copy above script and replace the last portion of the menus.cfg with it

chasester

newentgui = [
  genentattributes $arg1 $arg2 $arg3
  newgui $arg1 [
    guititle $entguitype
    guibar
    @entattributes
    @arg4
    guitab type
    guilistsplit n 2 $enttypelist [
        guibutton $n [ entset @n ]
    ]
    guitab misc
    @quickeditmenu
  ] "" [initentgui; @arg5; ]
]

looplist i $enttypelist [
  newentgui $i "" ""
]

newgui materials [
  @matmenu
  guitab misc
  @quickeditmenu
]

newgui brushes [
  @brushmenu
  guitab misc
  @quickeditmenu
]

newgui quickedit [
  @quickeditmenu
  guitab materials
  @matmenu
]

entscale = 100;

newentgui light "radius red green blue" "0 400 0 255 0 255 0 255" [
    guibar
  guistayopen [
guilist [
    guibutton "1/2 light  " [halflight 1 2 ] 
guibar
guibutton  "  " "" 0
    guibutton "3/4 light " [halflight 3 4 ]
    ]
    guitext "scale(%)"
    guislider entscale 0 200
    guibutton "update" [halflight $entscale 100; entscale = 100; ] 
]
guibar
    guicheckbox "ambient" entguiattr4 1 0 [ entupdate ]
] [ entscale = 100; ]

halflight = [
entguiattr1 = (min 255 (div (* ( $entguiattr1 ) $arg1 ) $arg2 ) )
entguiattr2 = (min 255 (div (* ( $entguiattr2 ) $arg1 ) $arg2 ) )
entguiattr3 = (min 255 (div (* ( $entguiattr3 ) $arg1 ) $arg2 ) )
entupdate
]
teamselect = [
guitext "" 0
guiradio "neural" entguiattr1 0 [entupdate]
guiradio "team one" entguiattr1 1 [entupdate]
guiradio "team two" entguiattr1 2 [entupdate]
]

newentgui spotlight "radius" "0 90"
newentgui playerstart "direction" "0 360" [ @teamselect ]
newentgui teleport "tag model" "0 20 0 200" [guicheckbox "use model" entguiattr1 0 -1 [entupdate] ]
newentgui teledest "direction tag" "0 360 0 20" [guicheckbox "keep velocity" entguiattr2 1 0 [entupdate] ]
newentgui monster "direction" "0 360"[
guilist [ guilist [
    guiradio "ogro     "  entguiattr1 0 [entupdate]
    guiradio "rhino    " entguiattr1 1 [entupdate] 
    guiradio "ratama   " entguiattr1 2 [entupdate]
    guiradio "slith    " entguiattr1 3 [entupdate]
    guiradio "bauul    " entguiattr1 4 [entupdate] ]
guibar
guilist [
    guiradio "hellpig  " entguiattr1 5 [entupdate]
    guiradio "knight   " entguiattr1 6 [entupdate]
    guiradio "goblin   " entguiattr1 7 [entupdate]
    guiradio "spider   " entguiattr1 8 [entupdate] ]
   ]
]
newentgui mapmodel "direction model" "0 360 0 100"
newentgui envmap "radius" "0 400"
newentgui jumppad "Z Y X" "0 200 0 200 0 200"
newentgui sound "type radius size" "0 20 0 500 0 500"
newentgui particles "type" "0 7"
newentgui flag	"direction" "0 360" [ @teamselect]
newentgui base "" "" [
guistayopen [
   guitext "tag"
   guislider entguiattr2 0 10
   guitext "" 0
guilist [ guilist [
    guiradio "shells   " entguiattr1 1 [entupdate] 
    guiradio "bullets  " entguiattr1 2 [entupdate]
    guiradio "rockets  " entguiattr1 3 [entupdate]
    guiradio "random   " entguiattr1 0 [entupdate] 
 ]
guibar
guilist [
    guiradio "rifle    " entguiattr1 4 [entupdate] 
    guiradio "grenades " entguiattr1 5 [entupdate]
    guiradio "pistol   " entguiattr1 6 [entupdate] ]
   ]
]
]

entweapontypelist = "shells riflerounds bullets rockets grenades cartridges health greenarmour yellowarmour quaddamage healthboost"
entguiweapon = [
guilistsplit n 2 $entweapontypelist [
        guibutton $n [ entset @n ]
    ]
]

setupweapongui = [ 
loop i 11 [
  newentgui (at $entweapontypelist $i) "" "" [@entguiweapon ] ]
] 
setupweapongui
contexteditgui = [
    if $hmapedit [showgui brushes] [
        if (enthavesel) [
            showgui (enttype)
        ] [showgui (? (havesel) materials quickedit)]
    ]
]

showentgui = [ contexteditgui ] // legacy bind

newgui seltexinfo [
    guitext (concatword "Slot: " (getseltex))
    guilist [ loop x 5 [
        texname = (gettexname (getseltex) $x)
        texname = (substr $texname (+ (strstr $texname ">") 1)) // chop off any leading commands
        guiimage (concatword "packages/" $texname) "" 1 1
    ]]
    loop x 5 [ tex = (gettexname (getseltex) $x); if (strcmp $tex "") [] [guitext $tex]]
]
menus.cfg (50.14 KB)
17
points
 (3 votes)
User login
Users on Quadropolis
1 guest & no users online
Gangler
36
points ]
 (4 votes)
Created 2020-10-22 00:50
3 years 19 weeks ago
Zoocata
10
points ]
 (1 vote)
Created 2024-02-11 21:20
3 weeks 1 day ago
vampirefrog
10
points ]
 (1 vote)
Created 2023-07-23 20:02
32 weeks 1 day ago
36
points ]
 (4 votes)
Created 2020-12-10 12:49
3 years 12 weeks ago
Created 2023-12-12 23:34
11 weeks 6 days ago
Zoocata
Created 2023-11-27 23:00
14 weeks 15 hours ago
20
points ]
 (2 votes)
Created 2023-10-01 15:21
22 weeks 1 day ago
20
points ]
 (2 votes)
Created 2021-05-24 00:01
2 years 40 weeks ago
9
points ]
 (1 vote)
Created 2023-06-13 17:54
37 weeks 6 days ago
Zoocata
27
points ]
 (3 votes)
Created 2023-05-05 20:58
43 weeks 3 days ago
Zoocata
18
points ]
 (2 votes)
Created 2023-03-02 01:40
1 year 4 days ago
Getridou
Created 2023-01-29 23:27
1 year 5 weeks ago
Created 2023-01-19 19:36
1 year 6 weeks ago
Getridou
Created 2023-01-10 17:10
1 year 7 weeks ago
Getridou
Created 2023-01-01 14:30
1 year 9 weeks ago
Getridou
Created 2023-01-01 10:58
1 year 9 weeks ago
Getridou
Created 2023-01-01 10:49
1 year 9 weeks ago
afroninja
17
points ]
 (2 votes)
Created 2023-01-01 06:32
1 year 9 weeks ago
36
points ]
 (7 votes)
Created 2010-04-01 07:57
13 years 48 weeks ago
57
points ]
 (6 votes)
Created 2020-12-04 12:05
3 years 13 weeks ago
Who's new
  • ColdIV
  • Aidan
  • Hunk
  • letic86
  • BATMAN