Scripting advice: Difference between revisions

From OHRRPGCE-Wiki
Jump to navigation Jump to search
No edit summary
(reformatting, change phrasing from 1st to 2nd person)
Line 1: Line 1:
Here is a list of advices you should follow if you don't want your scripts to bug too much often while testing.<br><br>
Here is some advice you can follow when writing plotscript to reduce the number of bugs in your scripts.
If I am beginner I will use hssed.exe instead of the note pad and hspeak.exe to work and compile the scripts.<br><br>
 
I erase the hsi, the hs, and sav files from my directory some times or another (in particular after I've wrote several ploscripts or if I start to work seriously on my game)<br><br>
If you are a beginner, use [[HssEd]].exe instead of the notepad and [[HSPEAK.EXE]] to edit and compile the scripts.
I start the game for the beginning (I don't use a previous save) when
 
<br><br>
Start the game from the beginning (don't use a previous save) when
I have changed the heroes menu<br>
* you have changed the heroes menu
I have changed an option in the general game data<br>
* you have changed an option in the general game data
I have changed options on the map<br>
* you have changed options on the map
<br><br>
 
I don't write too long scripts. I use several little scripts (even for big scenes). See also: how do I call a script directly from another script.
Don't write scripts that are too long. Use several little scripts (even for big scenes). See also: [[How do I avoid script buffer overflows?]]
<br><br>
 
Before compiling I don't let an in-construction script on which I am working be compiled. I use the show text box command and ## (# always you to make comments. By putting the commands as comments you save time because have to write everything from the beginning) to prevent the commands to be compiled. => The scripts I compile are working scripts that have been tested several times.
When you have a partially finished script that you do not want included in your compiled script, you can disable it without deleting it by adding # before each line (a # makes the rest of the line a comment, so it is ignored by the compiler) When you are ready to work on the script again, you can un-comment it by deleting the #s
<br><br>
 
I don't import the script in the games if there are error messages from Hspeak.exe
If there are error messages from Hspeak.exe, do not import the compile .HS file into your game. Fix the errors first.
<br><br>
 
I always work with plotdictionary.html opened on a windows and an english dictionnary if necessary
While you are working, keep the [[Plotscripting Dictionary]] open in another window, for quick reference. The same is true of any reference materials that you might find useful, such as a dictionary, if english is not your first language.
<br><br>
 
As often as possible I tested the scripts I've just made several times just to be sure that what we want don't happen thanks to a bug
As often as possible, test the scripts you have just made several times just to be sure that they work correctly.
<br><br>
 
==See Also==
* [[Plotscripting Tutorial]]
* [[How do I avoid script buffer overflows?]]
* [[My scripts won't compile! Why?]]
* [[Why don't my special plotscripts work?]]

Revision as of 09:55, 12 April 2005

Here is some advice you can follow when writing plotscript to reduce the number of bugs in your scripts.

If you are a beginner, use HssEd.exe instead of the notepad and HSPEAK.EXE to edit and compile the scripts.

Start the game from the beginning (don't use a previous save) when

  • you have changed the heroes menu
  • you have changed an option in the general game data
  • you have changed options on the map

Don't write scripts that are too long. Use several little scripts (even for big scenes). See also: How do I avoid script buffer overflows?

When you have a partially finished script that you do not want included in your compiled script, you can disable it without deleting it by adding # before each line (a # makes the rest of the line a comment, so it is ignored by the compiler) When you are ready to work on the script again, you can un-comment it by deleting the #s

If there are error messages from Hspeak.exe, do not import the compile .HS file into your game. Fix the errors first.

While you are working, keep the Plotscripting Dictionary open in another window, for quick reference. The same is true of any reference materials that you might find useful, such as a dictionary, if english is not your first language.

As often as possible, test the scripts you have just made several times just to be sure that they work correctly.

See Also