Advertisement
pouar

notes.html

Feb 17th, 2016
720
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 3.06 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <style>
  6. .t
  7. {
  8.     font-weight: bold;
  9.     text-decoration: underline;
  10. }
  11. </style>
  12. <title>Notes</title>
  13. </head>
  14. <body>
  15. <span class="t">Variables</span><br />
  16. <br />
  17. backtitle – Back title for &#39;dialog&#39;<br />
  18. <br />
  19. current_location – Name of the present location<br />
  20. <br />
  21. font_style – Variable for the font style<br />
  22. font_style1 – Variable of font style attribute<br />
  23. font_style2 – Variable of font style color<br />
  24. font_style3 – Variable of font style background color<br />
  25. <br />
  26. HUD_playerHPempty – variable to determine how many &#39;spaces&#39; on HP meter<br />
  27. HUD_playerHPfilled – variable to determine how many &#39;blocks&#39; on HP meter<br />
  28. HUD_playerMPempty – variable to determine how many &#39;spaces&#39; on MP meter<br />
  29. HUD_playerMPfilled – variable to determine how many &#39;blocks&#39; on MP meter<br />
  30. <br />
  31. menuitem – variable that is the selected option of a &#39;dialog&#39; menu<br />
  32. menu_in – path to menu input file<br />
  33. menu_out – path to menu output file<br />
  34. <br />
  35. playerstat_lvl  – Player&#39;s Level<br />
  36. playerstat_Bits – Player&#39;s Money<br />
  37. playerstat_effect1 – Player&#39;s 1st Status Effect<br />
  38. playerstat_effect2 – Player&#39;s 2nd Status Effect<br />
  39. playerstat_effect3 – Player&#39;s 3rd Status Effect<br />
  40. playerstat_HP – Player&#39;s HP<br />
  41. playerstat_MP – Player&#39;s MP<br />
  42. playerstat_XP – Player&#39;s EXP<br />
  43. playerstat_XPtoNext – Player&#39;s XP until next level up<br />
  44. playerstat_Max* - Player&#39;s Max<br />
  45. player_command – A player entered command<br />
  46. <br />
  47. ontitlemenu – Is the player on the title screen?<br />
  48. <br />
  49. <br />
  50. <span class="t">Functions</span><br />
  51. <br />
  52. calc_percentage – find the percentage of a number ( calc_percentage [number] [percent] )<br />
  53. <br />
  54. event_titlemenu – Call Title Screen<br />
  55. <br />
  56. font_set – Set font properties ( font_set [attribute] [font color] [background color] )<br />
  57. <br />
  58. set_menu_result – Quick set the $menuitem variable<br />
  59. <br />
  60. textoutput_display_actions-seperator – Insert horizontal ACSII line with “Available Actions” box<br />
  61. textoutput_display_HUD – Display the full Upper HUD<br />
  62. textoutput_display_location.info – Read the location.info file for $current_location<br />
  63. textoutput_display_playerHP – Display Player HP (with bar)<br />
  64. textoutput_display_playerMP – Display Player MP (with bar)<br />
  65. textoutput_display_seperator – Insert a horizontal ACSII line<br />
  66. <br />
  67. textoutput_typchar – Type a character, then pause shortly<br />
  68. textoutput_typespace – Type a space, then pause shortly<br />
  69. textoutput_typedots – Slowly type a “...”<br />
  70. <br />
  71. Player_Menu/ - Call the Main Player Menu<br />
  72. <br />
  73. <span class="t">Game Data</span><br />
  74. <br />
  75. Source Files – Where files for the &#39;source&#39; command are stored<br />
  76. <br />
  77. Description – Where descriptions are stored<br />
  78. <br />
  79. Description/Location – Location Descriptions
  80. </body>
  81. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement