This site works best with JavaScript enabled. Please enable JavaScript to get the best experience from this site.
Quote from 04005003 if(itemId==292)//280iron hoe { ModPE.selectLevel("Dragon Ball Z Map")//works just need to go back to your world you came from getTile(x,y,z); setTile(x,y,z,0); }
var backWorld=null; function procCmd(cmd) { cmd=cmd.split(' '); if(cmd[0]=="selectlevel") { if(cmd[1]) { backWorld = Level.getWorldName(); if(cmd[2]) { if(cmd[3]) { ModPE.selectLevel(cmd[1]+" "+cmd[2]+" "+cmd[3]); }else { ModPE.selectLevel(cmd[1]+" "+cmd[2]); } }else { ModPE.selectLevel(cmd[1]); } }else { clientMessage("Please define the world name."); } }else if(cmd[0]=="back") { if(backWorld===null) { clientMessage("You haven't teleported to a different world yet!"); }else { ModPE.selectLevel(backWorld); } } }
Quote from Lambo_car16 Here is the link: http://pastebin.com/raw.php?i=M0M5sd68 Or if you want the code: var backWorld=null; function procCmd(cmd) { cmd=cmd.split(' '); if(cmd[0]=="selectlevel") { if(cmd[1]) { backWorld = Level.getWorldName(); if(cmd[2]) { if(cmd[3]) { ModPE.selectLevel(cmd[1]+" "+cmd[2]+" "+cmd[3]); }else { ModPE.selectLevel(cmd[1]+" "+cmd[2]); } }else { ModPE.selectLevel(cmd[1]); } }else { clientMessage("Please define the world name."); } }else if(cmd[0]=="back") { if(backWorld===null) { clientMessage("You haven't teleported to a different world yet!"); }else { ModPE.selectLevel(backWorld); } } } Commands: /selectworld [worldname (can have up to 2 spaces)], /back (this will teleport you back to the world you just came from) Tell me if you want a download link.
Quote from 500 Internal Server Error I can fix the spaces issue and post it under the 50 line challenge, if you don't mind.
Quote from I_dont_know I didn't think this was possible yet. Thanks Edit: The command is selectlevel but it just crashes blocklauncher 1.5
Quote from Lambo_car16 Here is the link: http://pastebin.com/raw.php?i=M0M5sd68 Or if you want the code: var backWorld=null; function procCmd(cmd) { cmd=cmd.split(' '); if(cmd[0]=="selectlevel") { if(cmd[1]) { backWorld = Level.getWorldName(); if(cmd[2]) { if(cmd[3]) { ModPE.selectLevel(cmd[1]+" "+cmd[2]+" "+cmd[3]); }else { ModPE.selectLevel(cmd[1]+" "+cmd[2]); } }else { ModPE.selectLevel(cmd[1]); } }else { clientMessage("Please define the world name."); } }else if(cmd[0]=="back") { if(backWorld===null) { clientMessage("You haven't teleported to a different world yet!"); }else { ModPE.selectLevel(backWorld); } } } Commands: /selectworld [worldname (can have up to 2 spaces)], /back (this will teleport you back to the world you just came from) Tell me if you want a d
Quote from 500 Internal Server Error Thanks; will investigate.
Quote from I_dont_know Edit: The command is selectlevel but it just crashes blocklauncher 1.5
var backWorld=null; function procCmd(cmd) { cmd=cmd.split(' '); if(cmd[0]=="selectlevel") { if(cmd[1]) { backWorld = Level.getWorldName(); ModPE.selectLevel(cmd[1]); }else { clientMessage("Please define the world name."); } }else if(cmd[0]=="back") { if(backWorld===null) { clientMessage("You haven't teleported to a different world yet!"); }else { ModPE.selectLevel(backWorld); } } }
Quote from Lambo_car16 I think it's a problem with BlockLauncher... But isn't 1.5 a beta release? PS: Try this code: var backWorld=null; function procCmd(cmd) { cmd=cmd.split(' '); if(cmd[0]=="selectlevel") { if(cmd[1]) { backWorld = Level.getWorldName(); ModPE.selectLevel(cmd[1]); }else { clientMessage("Please define the world name."); } }else if(cmd[0]=="back") { if(backWorld===null) { clientMessage("You haven't teleported to a different world yet!"); }else { ModPE.selectLevel(backWorld); } } }Although, in this version the world can have no spaces.
i dont understand can u just put the mod scipt
Or if you want the code:
var backWorld=null; function procCmd(cmd) { cmd=cmd.split(' '); if(cmd[0]=="selectlevel") { if(cmd[1]) { backWorld = Level.getWorldName(); if(cmd[2]) { if(cmd[3]) { ModPE.selectLevel(cmd[1]+" "+cmd[2]+" "+cmd[3]); }else { ModPE.selectLevel(cmd[1]+" "+cmd[2]); } }else { ModPE.selectLevel(cmd[1]); } }else { clientMessage("Please define the world name."); } }else if(cmd[0]=="back") { if(backWorld===null) { clientMessage("You haven't teleported to a different world yet!"); }else { ModPE.selectLevel(backWorld); } } }Commands: /selectworld [worldname (can have up to 2 spaces)], /back (this will teleport you back to the world you just came from)
Tell me if you want a download link.
-
View User Profile
-
View Posts
-
Send Message
Curse PremiumI can fix the spaces issue and post it under the 50 line challenge, if you don't mind.
Click Banner to SUBSCRIBE!!! I'm in the Team Flame Clan!!! Click that little green arrow!! -------------->
I didn't think this was possible yet. Thanks
Edit: The command is selectlevel but it just crashes blocklauncher 1.5
-
View User Profile
-
View Posts
-
Send Message
Curse PremiumThanks; will investigate.
Ok awesome
PS: Try this code:
var backWorld=null; function procCmd(cmd) { cmd=cmd.split(' '); if(cmd[0]=="selectlevel") { if(cmd[1]) { backWorld = Level.getWorldName(); ModPE.selectLevel(cmd[1]); }else { clientMessage("Please define the world name."); } }else if(cmd[0]=="back") { if(backWorld===null) { clientMessage("You haven't teleported to a different world yet!"); }else { ModPE.selectLevel(backWorld); } } }Although, in this version the world can have no spaces.1.5 is on the play store. And it still crashes