Mirage Engine
Editing Server Menu - Printable Version

+- Mirage Engine (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: General (https://mirage-engine.uk/forums/forumdisplay.php?fid=17)
+---- Thread: Editing Server Menu (/showthread.php?tid=2120)



Editing Server Menu - Nean - 18-09-2008

So how the fuck, do I edit the server menu? I have a bunch of commands I'd like to add to the popup menu you get when you right click, on a player, however I've done searching and whatnot but haven't found any way I'd be able to do this. Someone point me in the right direction, and I should be fine.


Re: Editing Server Menu - Rezeyu - 19-09-2008

Ctrl + E


Re: Editing Server Menu - Nean - 19-09-2008

Thanks a lot I would'a never figured that out.


Re: Editing Server Menu - Rezeyu - 19-09-2008

You can also go under Tools -> Menu Editor.


Re: Editing Server Menu - Rian - 19-09-2008

You can also Right Click the form, and go to Menu Editor.


Re: Editing Server Menu - Nean - 19-09-2008

So I was working on a jail command, but I can't get it working. Heres what I have:

Code:
Sub mnuJailPlayer_Click()
Dim Name As String
    
    Name = frmServer.lvwInfo.SelectedItem.SubItems(3)
    If Not Name = "Not Playing" Then
        Call Cjailplayer(FindPlayer(Name))
    End If
End Sub