welcome to FROP+ beta testing, any issues you come into please report also press a to run pre-writen code to delete this pre-written code simply see inside and delete the code inside the list "code.backup" BEFORE running your written code HAVE FUN! how to use: HOW DO I MAKE A NEW OBJECT? first go into the sprite and design what you want your object to look like then write: "instance.new" (this tells the code your naming/making a new object) then right after that line insert your desired name for it then on the next line of code write "end" to finish it off HOW DO I MOVE MY ALREADY CREATED OBJECT? write instance.move (this tells the code that your about to move a existing object) then write the name of the existing objects name on the next line then write the x coord on the next line then write the y coord on the next line then write "end" (this finishes the code you just written so you can safely write more code THIS DOESNT STOP YOUR WHOLE CODE) HOW TO TURN OFF THE NAMES OF THE SPRITES first, write" hide.instance.names (this tells the code you want to hide the names ALL of the existing objects) HOW DO I TURN THE NAMES OF THE OBJECTS ON? to do so, write: show.instance.names (this tells the code that you want to turn the names of the objects back on) HOW DO I MAKE A FUNCTION? first write: define.func (this tells the code you want to define a function) then on the next line write (name of your new function your gonna define) then on the next lines write the code inside of your functions such as instance.new, ETC IMPORTANT FUNCTIONS NOTE when your writing the code inside of your function DO NOT WRITE THE WORD END AFTER YOUR DONE WITH A STATE MENT HERES A EXAMPLE: define.func examplename instance.new exampleinstance end - DO NOT PUT END, INSTEAD PUT A PERIOD like this: define.func examplename instance.new exampleinstance "." - THIS WOULD BE CORRECT AND DOESNT CONFUSE THE CODE ABOUT IF YOUR ENDING YOUR FUNCTION OR NOT to end your function please type: "end func" - (this tells the code that you have stop defining the function you just suggested and finishes it) YOU CANNOT EDIT FUNCTIONS AFTER THEY ARE MADE!!! HOW DO I MAKE THE CODE PAUSE/WAIT? first write: "pause for" - (this tells the code that you want to pause the code for a given time period) then on the next line write: (the time IN SECONDS you want the code to pause for before it resumes THIS FEATURE HAS NOT BE HEAVILY TESTED! BUT IS STABLE) HOW DO I REPEAT A FUNCTION (X) AMOUNT OF TIMES? first write: func repeat then on the next line write the amount of times to repeat then on the next line write the correct name of a EXISTING function NOTE THIS COMMAND (func repeat) IS NOT STABLE AT THE MOMENT UNTILL FURTHER TESTING APPLIES USE AT YOUR OWN RISK) - HOW DO I CHANGE THE APPEARANCE OF A INSTANCE/OBJECT? first, you cant change it after its made unless you adjust code then "green flag" to clear the objects then second write: appear instance as then on the next line write: (the NUMBER of the costume) thats all! (in the future you may have to write end on a new line just to finalize your choice) HOW DO I MAKE A NEW VARIABLE? first write: var then after that you write the name of the variable, such as: example variable after that you write the amount you want to give to the varible such as: 20 (this command does not need to have end at the end of it) at the end of it, it should look like: var - (this tells the code your making a new variable) hello -(this tells the code the name of your new var) 34 - (this tells the code the amount you want to assign) HOW DO I CHANGE THE VARIABLE BY A NUMBER? first write: change var by THEN write the name of the variable you want to change such as: hello THEN write the amount you want to change it by, such as: 5 example: the variable hello currently = 10 after doing the change var by command and changing it by 5 variable hello now = 15 it should look like: change var by - (this told the code your changing a var) hello - (this tells the code the amount to change it by) 15 - (this tells the code your changing the var by 15) (this command does not need to have end at the end of it) HOW DO I CHANGE A VARIBLES AMOUNT first write, change var then write the name of the existing varible then write the new amount you would like to give to your existing varible it should look like: change var (this tells the code you are changing a var) varible name (tells code which var your changing) 40 (tells code amount your changing the varible to) (this command does not need to end with end but its always best to end commands with end) HOW DO I DO A IF COMMAND? first write: if then write varible name then write what your expecting the outcome to be then write the function you want it to play if the if statement is true it should look like: if (insert varible name here) 22 (what your hoping it =) (insert function name here) INSTRUCTIONS PART 2 IS IN THE NOTES AND CREDITS
(frop+ is my own coding language thats all EX means experimental) HOW DO I MAKE A FOREVER LOOP? (this command is not available and is under testing and experimental, but heres the future command:) first, type forever, then write the code you want to repeat, untilll the code stops running after that simply put: loop end (this is subject to change,)