Quote:
Originally Posted by fowlplay4
Try adding this to your folder config.
level *.nw
|
it's already added by default.
Quote:
Originally Posted by fowlplay4
If you still aren't having any luck just store the test.nw in your insides folder, and use:
|
it did work moving the test level to the sub-folder.
*Edit:
Weapon:
PHP Code:
function onActionServerSide( command, acc ) {
switch ( command ) {
case "Copy":
copylevel( "test.nw", "insides/test_" @ acc @ ".nw" );
temp.f = findplayer( acc );
temp.f.setlevel2( "test_" @ acc @ ".nw", temp.f.x, temp.f.y);
break;
}
}
//#CLIENTSIDE
function onPlayerChats() {
if ( player.chat == "/copy" ) {
triggerserver("gui", name, "Copy", player.account);
}
}
still getting failed when trying to warp to the level ( and the level isn't copied )