This is not suggestions and requests. You should be able to at least figure out how to make the output event on your own.
Start here for the output event: http://forum.blockland.us/index.php?topic=40631.0Then create your GUI. Clients will need to download this.Create a client command that loads your GUI. The output event should trigger the client command.
And also how woukd i edit my mods (and mine mod only) border and stuff like instead of having that blue header i want it to be black
function serverCmd975649276462(%client)//i made it random numbers so it would be hard to memorize}$remapDivison[$remapCount] = "SuperCity Bank GUI"; //The Category$remapName[$remapCount] = "Open"; //The Description$remap[$remapCount] = "Open_SCBank"; //The Function when keystroke is activated$remapCount++;};
No, absolutely nothing about that will work...
The keybind information is to put it in your controls, not to open the GUI. The keybind calls the function that you put there. You can't just stick that into a servercmd.
yea im not used to guo so i just saw open gui thing and slamed it in there so how would i?
function servercmd975649276462(%client){ commandToClient(%client, 'openGUI');}
function ClientCmdopenGUI(%gui){ canvas.pushdialog(yourGUINameHere');}