Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!doctype html>
- <html>
- <head>
- <meta charset="UTF-8">
- <style>
- .t
- {
- font-weight: bold;
- text-decoration: underline;
- }
- </style>
- <title>Notes</title>
- </head>
- <body>
- <span class="t">Variables</span><br />
- <br />
- backtitle – Back title for 'dialog'<br />
- <br />
- current_location – Name of the present location<br />
- <br />
- font_style – Variable for the font style<br />
- font_style1 – Variable of font style attribute<br />
- font_style2 – Variable of font style color<br />
- font_style3 – Variable of font style background color<br />
- <br />
- HUD_playerHPempty – variable to determine how many 'spaces' on HP meter<br />
- HUD_playerHPfilled – variable to determine how many 'blocks' on HP meter<br />
- HUD_playerMPempty – variable to determine how many 'spaces' on MP meter<br />
- HUD_playerMPfilled – variable to determine how many 'blocks' on MP meter<br />
- <br />
- menuitem – variable that is the selected option of a 'dialog' menu<br />
- menu_in – path to menu input file<br />
- menu_out – path to menu output file<br />
- <br />
- playerstat_lvl – Player's Level<br />
- playerstat_Bits – Player's Money<br />
- playerstat_effect1 – Player's 1st Status Effect<br />
- playerstat_effect2 – Player's 2nd Status Effect<br />
- playerstat_effect3 – Player's 3rd Status Effect<br />
- playerstat_HP – Player's HP<br />
- playerstat_MP – Player's MP<br />
- playerstat_XP – Player's EXP<br />
- playerstat_XPtoNext – Player's XP until next level up<br />
- playerstat_Max* - Player's Max<br />
- player_command – A player entered command<br />
- <br />
- ontitlemenu – Is the player on the title screen?<br />
- <br />
- <br />
- <span class="t">Functions</span><br />
- <br />
- calc_percentage – find the percentage of a number ( calc_percentage [number] [percent] )<br />
- <br />
- event_titlemenu – Call Title Screen<br />
- <br />
- font_set – Set font properties ( font_set [attribute] [font color] [background color] )<br />
- <br />
- set_menu_result – Quick set the $menuitem variable<br />
- <br />
- textoutput_display_actions-seperator – Insert horizontal ACSII line with “Available Actions” box<br />
- textoutput_display_HUD – Display the full Upper HUD<br />
- textoutput_display_location.info – Read the location.info file for $current_location<br />
- textoutput_display_playerHP – Display Player HP (with bar)<br />
- textoutput_display_playerMP – Display Player MP (with bar)<br />
- textoutput_display_seperator – Insert a horizontal ACSII line<br />
- <br />
- textoutput_typchar – Type a character, then pause shortly<br />
- textoutput_typespace – Type a space, then pause shortly<br />
- textoutput_typedots – Slowly type a “...”<br />
- <br />
- Player_Menu/ - Call the Main Player Menu<br />
- <br />
- <span class="t">Game Data</span><br />
- <br />
- Source Files – Where files for the 'source' command are stored<br />
- <br />
- Description – Where descriptions are stored<br />
- <br />
- Description/Location – Location Descriptions
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement