Mirage Source
Admin Panel - Printable Version

+- Mirage Source (https://mirage-engine.uk/forums)
+-- Forum: Mirage Source (Nostalgia) (https://mirage-engine.uk/forums/forumdisplay.php?fid=61)
+--- Forum: Archive (2006-2011) (https://mirage-engine.uk/forums/forumdisplay.php?fid=18)
+---- Forum: Resources (https://mirage-engine.uk/forums/forumdisplay.php?fid=49)
+---- Thread: Admin Panel (/showthread.php?tid=2319)



Admin Panel - David David - 29-10-2008

Okay, well i looked at others and there Admin Control Panels. And they made a download link for it. I downloaded it and saved it to my folder. Once i did i got 10 errors, all for .text, i only have 4 buttons now "Edit Spells, Edit Shop, Edit NPC, Edit Items" But what i would REALLY like to do, is edit my map. 0.0.


Re: Admin Panel - Rian - 29-10-2008

Don't download any forms that might come with the tutorial, just make the buttons yourself. An admin panel is perhaps the easiest thing you can add to a Mirage Game, as all the commands are already coded, and the admin panel is just a GUI for those commands. Basically, I'm trying to stress how important it is for you to tinker with those tutorials and make the admin panel work by yourself.


Re: Admin Panel - DarkX - 29-10-2008

the .Text's are anything else like warp player to, jail, setsprite, setaccess, just make new text box for every one of those new features. And there should be a tutorial piece in there that shows you how to set it up so it will call the map editor

Quote:create a button called btnMapeditor
This is Map Editor
then put this inside


Code:
Select all
    If GetPlayerAccess(MyIndex) >= ADMIN_MAPPER Then
        Call SendRequestEditMap
         frmMirage.Width = 14175
    Else: Auth = "You are not authorized to carry out that action"
             Call AddText(Auth, BrightRed)
    End If