Author Topic: AdminGUI  (Read 1011 times)

I was making a modification of the admin window and i dont know where the original one is can some one tell me where it is?

The best way to modify the GUI without loving up other mods is to do this:
Code: (Author: Randy) [Select]
if(isObject(AdminGui))
{
$AdminGuiWindow = AdminGui.getObject(0);
new WhateverYourAdding(TheObjectsName)
{
stuffYouNeed = 1;
};
$AdminGuiWindow.add(TheObjectsName);
}

Umm i need to know where the Admingui file is in blockland folder cause i just modfyed it on gui editor

modfyed it on gui editor
How are we supposed to know where it is if YOU are the one who chose where it was saved?

i want to know where the Original one is so i can replace it with my Modifyed ver.

There is no specific location.

You would have to open it up with GUI editor, save it, then there it is.

Even if you do that, it's still not it.

Don't modify it directly. Just add stuff to it the way I said you should.

Then i would need to know how to package it.

Do what Chrono said, the best way to edit a GUI without loving it up (or having the original) is by doing that.