Blockland Forums > Modification Help
Replacing a default GUI
Demian:
I intend on replacing the admin GUI with my own custom GUI. How would I do this? Client side add-on is what I'm wanting.
Skateaton:
Depends what you mean by replacing.
Headcrab Zombie:
If you're not publicly releasing it, I'd say just remove the admin GUI bind and add a bind for you GUI that's the same thing. That way you can still open the admin GUI if you need to.
If you are publicly releasing it, you wouldn't want to replace anything default. Maybe add a button onto the admin GUI that opens your GUI, or another bind? If possible just add more buttons to the admin GUI.
Plornt:
All you need to do is create a new GUI, delete the existing one "AdminGUI.delete();" and create another one with the same name.
Demian:
--- Quote from: Plornt on September 10, 2010, 04:22:09 PM ---All you need to do is create a new GUI, delete the existing one "AdminGUI.delete();" and create another one with the same name.
--- End quote ---
Thanks. That worked perfectly.