Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
/editmap command
#1
I know this is pretty simple, but people coming from elysium may find it really annoying to type "/editmap" and have nothing happen, and then realize that they have to type "/mapeditor" also it is really counter-intuitive to have every other editor be "/editX" expect for the map.


Ok anyway.
in modGameLogic, in the HandleKeypresses sub, find
Code:
' Map Editor
            If LCase$(Mid$(MyText, 1, 10)) = "/mapeditor" Then
                frmMirage.Width = 14175
                Call SendRequestEditMap
                MyText = vbNullString
                frmMirage.txtMyChat.Text = vbNullString
                Exit Sub
            End If

under it put

Code:
' Map Editor Alternative
            If LCase$(Mid$(MyText, 1, 8)) = "/editmap" Then
                frmMirage.Width = 14175
                Call SendRequestEditMap
                MyText = vbNullString
                frmMirage.txtMyChat.Text = vbNullString
                Exit Sub
            End If
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)