This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
crpl:crpltutorial:interactive:randomemitter [2013/10/07 23:58] – FreeForTaking | crpl:crpltutorial:interactive:randomemitter [2025/02/14 14:57] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ~~DISCUSSION~~ | ||
< | < | ||
====== Creating a flying emitter ====== | ====== Creating a flying emitter ====== | ||
- | In this tutorial I'll cover how to make a flying emitter that flies to a randomly chosen spot, deploys a load of creeper and then repeats the procedure until you en the map. | + | In this tutorial I'll cover how to make a flying emitter that flies to a randomly chosen spot, deploys a load of creeper and then repeats the procedure until you end the map. |
===== Prerequisites ===== | ===== Prerequisites ===== | ||
* Access to Creeper World 3 mapmaker. | * Access to Creeper World 3 mapmaker. | ||
- | * http:// | + | * http:// |
+ | < | ||
===== Creating the script file ===== | ===== Creating the script file ===== | ||
Line 15: | Line 15: | ||
{{: | {{: | ||
- | First you access the custom map section from the front screen int the projects sector. | + | First you must access the custom map section from the front screen int the projects sector. |
{{: | {{: | ||
Line 24: | Line 24: | ||
{{: | {{: | ||
- | Press on the edit map button to access all the map editing functions. | + | Press the edit map button to access all the map editing functions. |
{{: | {{: | ||
- | - Press the unit tab in the mapmaker UI. | + | - First select |
- Then press the scripts button, it'll bring up the scripts UI. | - Then press the scripts button, it'll bring up the scripts UI. | ||
- In the Scripts UI, first type the name of the script, my given name is MovingEmitter. | - In the Scripts UI, first type the name of the script, my given name is MovingEmitter. | ||
- Press the create button to create the script. | - Press the create button to create the script. | ||
- | - The script will now show up in the Scripts menu, press the edit button next to the script to start editing. It' | + | - The script will now show up in the Scripts menu, press the edit button next to the script to start editing. It's here you'll need to have some kind of text editor installed, please refer to [[crpl: |
===== Coding the script ===== | ===== Coding the script ===== | ||
- | Now when everything is set up, it's time to start scripting. At this point i hope you have went through the [[crpl: | + | Now when everything is set up, it's time to start scripting. At this point I hope you have went through the [[crpl: |
So right now, if you did everything right, and have a text editor set up, then you should have a mostly empty page with just some gibberish at the top, you can remove that part if you want or keep it, it doesn' | So right now, if you did everything right, and have a text editor set up, then you should have a mostly empty page with just some gibberish at the top, you can remove that part if you want or keep it, it doesn' | ||
Line 42: | Line 42: | ||
But where to start? | But where to start? | ||
- | I can start with showing off the first two rows of the code: | + | I will start with showing off the first two rows of the code: |
< | < | ||
Line 151: | Line 151: | ||
This was all for me for this time, hope you enjoyed and learned something! :) | This was all for me for this time, hope you enjoyed and learned something! :) | ||
+ | |||
+ | ===== Extra ===== | ||
+ | |||
+ | Only read this if you want some extra information. | ||
+ | |||
+ | If you declare a variable as floating point, so: | ||
+ | < | ||
+ | Instead of: | ||
+ | < | ||
+ | You can use floating point values in the game when choosing the variables! (#5 of the last image above) |