faq.cfg 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. // generates the FAQ menu available from the first run menu or the help menu
  2. faqQuestions = [
  3. "What is the fastest way to get help/support for AssaultCube?"
  4. "How do I determine what version of AssaultCube I have installed?"
  5. "How do I check for updates for AssaultCube?"
  6. "How do I load my map in coop-edit mode?"
  7. "How do I enter edit mode?"
  8. "How do I switch to a different primary weapon?"
  9. "How do I report an abusive or cheating player?"
  10. "Where is the licensing information?"
  11. ]
  12. faqAnswer_1 = [
  13. "Make an account on the AssaultCube forum and post a new thread in the Help section."
  14. "Alternatively, you can try getting help on the AssaultCube IRC channel."
  15. "Whatever method you decide to use, please be patient for assistance."
  16. ""
  17. "Links:"
  18. "http://forum.cubers.net - AssaultCube Forum"
  19. "http://assault.cubers.net/irc.html - AssaultCube IRC"
  20. ]
  21. faqAnswer_2 = [
  22. "Your AssaultCube version can be determined by launching the game and executing"
  23. "the /version command. It should output a 4 digit number such as 1202 -"
  24. "this would indicate that you have AssaultCube version 1.2.0.2 installed."
  25. ]
  26. faqAnswer_3 = [
  27. "Using the information that you received from executing the /version command"
  28. "(see FAQ #2) - you can visit the AssaultCube download page and verify that"
  29. "you have the current version."
  30. ""
  31. "Links:"
  32. "http://assault.cubers.net/download.html - Download AssaultCube"
  33. ]
  34. faqAnswer_4 = [
  35. "The Cube engine makes it easy for multiple people to make a map at the same"
  36. "time. This is called coop-edit mode. If you want to make a map in coop-edit"
  37. "mode use the following steps:"
  38. ""
  39. "#1: Use the /newmap command to create a new map."
  40. "#2: Use the /savemap command to save the map, be sure to give it a unique name."
  41. "#3: Connect to a server that allows map uploads and coop-edit."
  42. "#4: Upload the new map to the server by using the /sendmap command."
  43. "#5: Use the /coop command to load your map in coop-edit mode."
  44. "#6 Enter edit mode and start mapping. Use the autosavemap feature or use /savemap often."
  45. ""
  46. "If you just want to load a existing map on the server in coop-edit mode, see step #5."
  47. ]
  48. faqAnswer_5 = [
  49. "By default, if you are in a singleplayer mode or coop-edit mode, the E key will"
  50. "toggle you in and out of edit mode. Edit mode allows you to execute map editing"
  51. "functions and manipulate map geometry. If all else fails, you can always execute"
  52. "the /edittoggle command to toggle in and out of edit mode."
  53. ]
  54. faqAnswer_6 = [
  55. "By default, the B key will show the primary weapon change menu. If all else fails,"
  56. "you can always execute /showmenu Weapons - as a command. Note that the W on weapons"
  57. "is capitalized."
  58. ]
  59. faqAnswer_7 = [
  60. "Make an account on the AssaultCube forum and make a new post in the blacklist thread."
  61. "Please take the time to read and understand how you should format your blacklist report."
  62. "Proper format and evidence (screenshots/demos/logs) are required."
  63. ""
  64. "Links:"
  65. "http://forum.cubers.net/forum-12.html - AssaultCube Blacklist Subforum"
  66. ]
  67. faqAnswer_8 = [
  68. "AssaultCube and its resources are pieced together and developed by various people"
  69. "throughout the world. While the source code is open source and released under a"
  70. "license derived from the zlib license, the majority of the media found in the"
  71. "AssaultCube package are released under different licenses. Please read and"
  72. "understand the various licenses before modifying or redistributing media within"
  73. "AssaultCube or the AssaultCube package as a whole."
  74. ""
  75. "Links:"
  76. "http://assault.cubers.net/docs/license.html - AssaultCube Licensing Information"
  77. ]
  78. //// Main > Help > FAQ ////
  79. newmenu faq
  80. loop i (listlen $faqQuestions) [
  81. menuitem (concatword (at ["\f2" "\fD"] (&b $i 1)) (format [#%1: ] (+ $i 1)) (at $faqQuestions $i)) -1
  82. tempalias tmpMenuAlias (concatword faqAnswer_ (+ $i 1))
  83. loop o (listlen $$tmpMenuAlias) [
  84. if (strstr (at $$tmpMenuAlias $o) "http://") [
  85. menuitem (concatword " \f1" (at $$tmpMenuAlias $o)) -1
  86. ] [
  87. menuitem (concatword " \f5" (at $$tmpMenuAlias $o)) -1
  88. ]
  89. ]
  90. delalias $tmpMenuAlias
  91. menuitem "" -1
  92. ]
  93. menuitem "\t\t\t\t\t\f2[ Back ]" [ closecurmenu ]
  94. delalias faqQuestions