27-04-2008, 04:36 PM
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
under it put
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