Advertisement
Guest User

Untitled

a guest
Jul 16th, 2018
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.69 KB | None | 0 0
  1. SA:MP server 0.3z-R4 is needed
  2.  
  3.  
  4. Install:
  5.  
  6. -host: 127.0.0.1
  7. -database name: dayz
  8. -user name: user
  9. -password: password
  10.  
  11. You can change this values. In pawno folder:
  12. -create MySQL DB with name you set in defines.inc (DBNAME parameter)
  13. -add user to this DB with name (USER parameter) and password (PASSWD parameter) you set in defines.inc
  14. -compile DayZ+.pwn
  15. -copy DayZ+.amx into a gamemodes folder
  16. -compile menu.pwn
  17. -copy menu.amx into a filterscripts folder
  18. in server folder:
  19. -fill in a database by one of this files:
  20. 1) dayz_data_mysql40_11_11_2014.sql (full MySQL database v4)
  21. 2) dayz_data_mysql56_11_11_2014.sql (full MySQL database v5)
  22. 3) dayz_empty_db.sql (empty MySQL database v5)
  23. 4) dayz_empty_db_40.sql (empty MySQL database v4)
  24. Every player from this databases have password: "password"
  25. If you've filled database with full data (#1 or #2), you can start to play!
  26.  
  27.  
  28.  
  29. Database filling:
  30.  
  31. -use next commands for database filling (from the game):
  32. /addspawn - add player spawn place in the place you are standing
  33. /addcar - add car spawn place in the place you are standing
  34. /adddot [type1, type2, type3 ...] - add object spawn place (see type id in 'thing_type' table in database) in the place you are standing
  35. /upddot <type1, type2, ...> - add object types to the last dott created with /adddot command
  36. /addobj <item id> [number] - add object in game (see id in 'things' table in database)
  37. /setnew - set new objects you added with /adddot command on spawn places
  38.  
  39. The state and position of every (!) item in this mode is tracked. So, the object count is static (if you don't add any more).
  40.  
  41.  
  42.  
  43. Editor:
  44.  
  45. You can add a new types of objects into the game. Files things.txt and imes.txt contains all information about items.
  46. The rules for editing this files are inside them.
  47. File things.txt contains parameters. File imes.txt contains name and description on several languages.
  48. You MUST add description for every thing in imes.txt file! Every item has three records:
  49.  
  50. [XXXXXXXXXXX]
  51. ru {...}
  52. en {...}
  53. es {...}
  54. pl {...}
  55. [XXXXXXXXXXX_VALUE]
  56. ru {...%d...}
  57. en {...%d...}
  58. es {...%d...}
  59. pl {...%d...}
  60. [XXXXXXXXXXX_ABOUT]
  61. es {...}
  62. en {...}
  63. pl {...}
  64. ru {...}
  65.  
  66.  
  67. where XXXXXXXXXXX - system name from things.txt (wich is in []). It contains only letters from the Latin alphabet and '_' char!
  68. XXXXXXXXXXX_VALUE - unit; must have "%d"; see patterns from this file
  69. XXXXXXXXXXX_ABOUT - description this thing
  70.  
  71.  
  72.  
  73. About DayZ+ mode:
  74.  
  75. -every item in mode is tracked (untill every bullet)
  76. -player items placed around the site of his death
  77. -you can put some items in a vehicle
  78. -gasoline can be drained from the tank to the canister
  79. -any weapon can be unloaded to get ammo
  80. -headshots
  81.  
  82. Extra admin commands:
  83. /nextcar - teleport to some (random) vehicle
  84. /live - restore player health state
  85. /update - reload things.txt (linux only)
  86. /tp - teleport
  87. /radius <meters> - set chat radius
  88. /wound - get wound (debugging)
  89. /hun1000 - get hunger (debugging)
  90. /set10 - set low health (debugging)
  91. /menu - show inventory menu
  92. /hide - hide inventory menu
  93. /kill - standart kill command
  94.  
  95.  
  96.  
  97. About engine:
  98.  
  99. -flexible system for adding new things (for linux version, you can add 'to hot', without restarting the server)
  100. -system composite items, i.e. You can specify rules for the composing and parsing of items in the inventory
  101. -built-in multi-language support (utf8)
  102. -position tracking system by which an item would not be behind the blank wall, or under the ground
  103. -realistic positioning (gradient using)
  104. -registration/authorisation system
  105. -ammo, player and vehicle state anticheat
  106. -weapon anticheat
  107. -speed anticheat
  108.  
  109.  
  110. Donate:
  111. WebMoney Z841169965648 E226595298971 R211309231066
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement