I can't use /exportmap command,it isn't work.If i type this command,nothing happens.Please help me.
[ #D~ Tools ] Re: Map Editor
« Reply #120, on August 8th, 2017, 02:14 PM »
I can't use /exportmap command,it isn't work.If i type this command,nothing happens.Please help me.
Make a new topic, but take note of this, place the IMPACT font underline it and then change its layout to the maximum. So that people can see more, even a blind man. You already know how to do itQuote from Yankee on August 8th, 2017, 02:14 PM I can't use /exportmap command,it isn't work.If i type this command,nothing happens.Please help me.
Make sure you have your map opened and there is something actually mapped. Afterwards make sure that when you type the exportmap command you wait for a success message. Then you can take the resulted outputs from the Maps/MapName folder.
else if( cmd == "allmaps" || cmd == "maps" || cmd == "getmaps" )
{
local listQuery = QuerySQL( Maps, "SELECT * FROM sqlite_master WHERE type='table'" );
local count = 0;
while ( GetSQLColumnData( listQuery, 0 ) ) {
count++;
MessagePlayer( "[#00CC00][MAP#" + count + "]: [#FFFFFF]" + GetSQLColumnData( listQuery, 1 ), player );
GetSQLNextRow( listQuery );
}
if( count == 0 ) return MessagePlayer( "[#00CC00][ERROR]: [#FFFFFF]No maps to list!", player );
}
else if( cmd == "alllocs" || cmd == "locs" || cmd == "getlocs" )
{
local listQuery = QuerySQL( db, "SELECT * FROM `Gotoloc`" );
local count = 0;
while ( GetSQLColumnData( listQuery, 0 ) ) {
count++;
MessagePlayer( "[#00CC00][LOC#" + count + "]: [#FFFFFF]" + GetSQLColumnData( listQuery, 0 ), player );
GetSQLNextRow( listQuery );
}
FreeSQLQuery( listQuery );
if( count == 0 ) return MessagePlayer( "[#00CC00][ERROR]: [#FFFFFF]No locations to list!", player );
}
while ( GetSQLNextRow( listQuery ) )
else if( cmd == "alllocs" || cmd == "locs" || cmd == "getlocs" )
{
local listQuery = QuerySQL( db, "SELECT * FROM `Gotoloc`" );
local count = 0;
do {
count++;
MessagePlayer( "[#00CC00][LOC#" + count + "]: [#FFFFFF]" + GetSQLColumnData( listQuery, 0 ), player );
}
while ( GetSQLNextRow( listQuery ) )
FreeSQLQuery( listQuery );
if( count == 0 ) return MessagePlayer( "[#00CC00][ERROR]: [#FFFFFF]No locations to list!", player );
}
- Changelog - v1.3.3
- ► Added /accuracy (/acc) and /speedfactor commands (Custom speed mode now available)
- ► CRITICAL:: Attempted to fix objects "not saving" or "disappearing" (I'M NOT SURE IF THIS FUCKS IT UP EVEN MORE OR FIXES IT, JUST USE THIS VERSION FOR TESTING AND HELPING)
- (I did have some guys test it and they said its working better)