Hello people. I am new to minecraftforums, but I will try my best. Recently, in my free time, I started making a script mod, and I have completed the Mini Essentials Version 1.0. I worked quite a lomg wnile on this script mod, so I hope you guys like it. If you have any suggestions on what to add, please reply to this topic. Thanks
-BlazingBroGamer
Hello people. I am new to minecraftforums, but I will try my best. Recently, in my free time, I started making a script mod, and I have completed the Mini Essentials Version 1.0. I worked quite a lomg wnile on this script mod, so I hope you guys like it. If you have any suggestions on what to add, please reply to this topic. Thanks
-BlazingBroGamer
Warning: I couldn't convert it to a .js file, so I would need you to copy from your clipboard.
var warpX=0
var warpY=0
var warpZ=0
var x1 = 0;
var y1 = 0;
var z1 = 0;
var warp1X = 0;
var warp1Y = 0;
var warp1Z = 0;
var warp1 = 0;
function procCmd(cmd){
var cmd=cmd.split(" ");
switch(cmd[0])
{
case "about":
clientMessage ("()-----Custom SPC Made by: BlazingGamer-----()");
break;
case "msg":
clientMessage ("This is single player! You can't message anyone!");
break;
case "clearchat":
clientMessage (".")
clientMessage(".")
clientMessage(".")
clientMessage(".")
clientMessage(".")
clientMessage(".")
clientMessage(".")
clientMessage(".")
clientMessage(".")
clientMessage(".")
clientMessage(".")
clientMessage(".")
clientMessage(".")
clientMessage(".")
clientMessage(".")
clientMessage(".")
clientMessage(".")
clientMessage(".");
break;
case "sethome":
warpX=getPlayerX()
warpY=getPlayerY()
warpZ=getPlayerZ()
clientMessage ("Home set")
break;
case "home":
setPosition(getPlayerEnt(), warpX, warpY, warpZ);
clientMessage ("Teleported you to your home")
break;
case "commands":
clientMessage ("SPC Custom Commands VERSION 1.0... /sethome, /home, /clearchat, /about, /msg, /reset")
case "help":
if((cmd[1])=="sethome"){
clientMessage("/sethome help: Sethome anywhere, then you can do /home to get back.")
}
else if((cmd[1])==undefined){
clientMessage ("SPC Custom Commands VERSION 1.0... /sethome, /home, /clearchat, /about, /msg, /reset")
}
else if((cmd[1])=="reset"){
clientMessage("/reset help: Do /reset, and everything will be reset for you.")
}
else{
clientMessage("Command does not exist. /commands for a list of commands")
}
break;
case "setwarp":
if((cmd[1])==undefined){
clientMessage ("Error: Warp is undefined.")
}
else{
warp1=(cmd[1])
warp1X=getPlayerX()
warp1Y=getPlayerY()
warp1Z=getPlayerZ()
clientMessage("Warning: You can only set 2 warp in this version of Custom SPC.")
clientMessage ("Set warp as "+(cmd[1]));
}
break;
case "warp":
if(warp1==(cmd[1])){
setPosition(getPlayerEnt(), warp1X, warp1Y, warp1Z);
clientMessage ("Successfully warped to "+(cmd[1]));
}
else{
clientMessage ("Warp does not exist.")
}
break;
case "reset":
warpX=0
warpY=0
warpZ=0
x1=0
y1=0
z1=0
warp1X=0
warp1Y=0
warp1Z=0
warp1=0
clientMessage("Successfully reset all variables")
break;
case "say":
if((cmd[2])==undefined){
clientMessage("[@] " + (cmd[1]))
}
else{
clientMessage("Error: In this version of custom SPC, there is only up to 1 word available for the command.")
}
break;
case "gm":
if((cmd[1])=="c"){
Level.setGameMode(1);
clientMessage("Successfully set gamemode to CREATIVE")
}
else if((cmd[1])=="s"){
Level.setGameMode(0);
clientMessage("Successfully set gamemode to SURVIVAL")
}
else{
clientMessage("Gamemode not defined. (Gamemode C or S in this version of Custom SPC)")
}
break;
}}
Its ok. I will also update this thread with the info. I forgot about that. Thanks for reminding me
This plugin does a lot of commands, you see in the bukkit plugin "Essentials". The usual one has around 100 commands, and I am also trying tomget to the goal. For now, it can do simple commands such as /sethome, /setwarp, /say, /clearchat, /gm s, /gm c, and so on.
Rollback Post to RevisionRollBack
To post a comment, please login or register a new account.
-
View User Profile
-
View Posts
-
Send Message
Curse Premium-BlazingBroGamer
Update:
ADDED DOWNLOAD LINK!
http://www.mediafire.com/download/62uhty3376723r3/MiniEssentials.zip
Want anymore features? Please go ahead and put it in the description bellow!
-
View User Profile
-
View Posts
-
Send Message
Curse PremiumIts ok. I will also update this thread with the info. I forgot about that. Thanks for reminding me
This plugin does a lot of commands, you see in the bukkit plugin "Essentials". The usual one has around 100 commands, and I am also trying tomget to the goal. For now, it can do simple commands such as /sethome, /setwarp, /say, /clearchat, /gm s, /gm c, and so on.