Advertisement
lolsalat

Hello World

Mar 5th, 2016
577
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //HELLO WORLD jpscript paste
  2.  
  3.  
  4. //note: 'function main(func){' is the start of every MineScript javascript-script
  5. function main(func){
  6.  
  7. func.sendCommand(func.var1, "/say HELLO WOLRD!");
  8. //note: 'func.sendCommand' sends a minecraft-command, just use it like:
  9. //      func.sendCommand(func.var1, "<Command");
  10. //      just replace '<Command>' with your command, but keep the qutation marks (").
  11. //      don't forget the semicolon (;) at the end of the command!
  12.  
  13. }
  14. //note: don't forget the '}' at the end of your script!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement