Guest User

Untitled

a guest
May 23rd, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.02 KB | None | 0 0
  1. ------------------ CONFIG.LUA --------------
  2. -- Config File For OTMadness Project 8.1 --
  3. --------------------------------------------
  4.  
  5. -- Size Length For Sending The Socket Bytes: (ONLY EDIT IF YOU KNOW WHAT YOU'RE DOING)
  6. outputminbytesize = 64
  7.  
  8. -- Data Directory Location:
  9. datadir = "data/"
  10.  
  11. -- Map Location:
  12. map = "data/world/otmadness.otbm"
  13.  
  14. -- Mapkind
  15. -- Options:
  16. -- 1. OTBM For Binary Map
  17. -- 2. XML For OTX Map
  18. mapkind = "OTBM"
  19.  
  20. -- Map Store Location: (For XML Only)
  21. mapstore = "data/world/eldinworld-mapstore.xml"
  22.  
  23. -- House Store Location: (For XML Only)
  24. housestore = "data/world/eldinworld-housestore.xml"
  25.  
  26. -- Server Name
  27. servername = "otmadness"
  28.  
  29. -- Server Location
  30. location = "Sweden"
  31.  
  32. -- Server Ip (The Ip That Server Listens On, Join www.no-ip.com For Custom Ip Name)
  33. ip = "197.33.55.114"
  34.  
  35. -- Server Port: (The Port That Server Listens On, Open The Port In Your Router If You Have One)
  36. port = "7171"
  37.  
  38. -- Server Url: (Website)
  39. url = "www.eldinworld.webs.com"
  40.  
  41. -- Server Owner Name:
  42. ownername = "Amr"
  43.  
  44. -- Server Owner Email:
  45. owneremail = "eldinworld@hotmail.com"
  46.  
  47. -- Max Number Of Players Allowed:
  48. maxplayers = "100"
  49.  
  50. -- World Type
  51. -- Options:
  52. -- 1. pvp
  53. -- 2. no-pvp
  54. -- 3. pvp-enforced
  55. worldtype = "pvp"
  56.  
  57. -- Exhausted Time In MS: (1000 = 1 Second)
  58. exhausted = 1000
  59.  
  60. -- Exhausted Time In MS For Non-Aggressive Spells Like Healings: (1000 = 1 Second)
  61. exhaustedheal = 1000
  62.  
  63. -- How Many MS To Add If The Player Is Already Exhausted And Tries To Cast A Spell: (1000 = 1 Second)
  64. exhaustedadd = 200
  65.  
  66. -- How Long Does The Player Has To Stay Out Of Fight To Get PZ Unlocked In MS: (1000 = 1 Second)
  67. pzlocked = 60*1000
  68.  
  69. -- Minimum Action Interval: (Levers And Action Items, Default = 200)
  70. minactioninterval = 200
  71.  
  72. -- Minimum Amount Of Time Between Extended Actions ('Use with...') (Default = 1000 = 1 Second)
  73. minactionexinterval = 1000
  74.  
  75. -- Anti-Spam-System - Max Message Buffer Before You Get Muted: (Default = 4).
  76. maxmessagebuffer = 1000
  77.  
  78. -- How Many Logins Attempts Until The Ip Is Temporary Disabled:
  79. -- Set 0 To Disable LoginTries
  80. logintries = 0
  81.  
  82. -- Time For The Retry Timeout Until A New Login Try Can Be Made: (Without Disabling The Ip, 1000 = 1 Second)
  83. retrytimeout = 0
  84.  
  85. -- How Long The Player Need To Wait Until The Ip Is Allowed Again:
  86. logintimeout = 0
  87.  
  88. -- Allow Clones (Multiple Logins Of The Same Character, Like In Some War Servers)
  89. -- Options:
  90. -- 0 = No
  91. -- 1 = Yes
  92. allowclones = 0
  93.  
  94. -- Allow More Then One Player Online On One Account At The Same Time:
  95. -- Options:
  96. -- 0 = No
  97. -- 1 = Yes
  98. checkaccounts = 0
  99.  
  100. -- Use WorldSystem? (Ment To Open More Servers At One Time)
  101. -- Options:
  102. -- 1. Yes
  103. -- 2. No
  104. useworldsystem = "yes"
  105.  
  106. -- Save Client Debug Assertion Reports:
  107. -- Options:
  108. -- 0 = No
  109. -- 1 = Yes
  110. saveclientdebug = 0
  111.  
  112. -- Set The Max Query Interval For Retrieving Status Information: (Default = 5 = 5 Minutes) (0 = Disable)
  113. statustimeout = 0
  114.  
  115. -------------------------------------------------------------------------------------
  116. ----------------------- OTServList.Org And Login Texts ------------------------------
  117. -------------------------------------------------------------------------------------
  118.  
  119. -- MOTD: (Message Of The Day, Shows Before A Player Login If They Havent Seen It Once, Write \n To Get Down One Line)
  120. -- Change the MOTDNum If You Change The MOTD Text And Want Players To See It During Their Next Login:
  121. motd = "Welcome to OTMadness!."
  122. motdnum = "1"
  123.  
  124. -- Login Message That You Always Will See:
  125. loginmsg = "Welcome to OTMadness!"
  126.  
  127. -------------------------------------------------------------------------------------
  128. ----------------------------------- SQL Options -------------------------------------
  129. -------------------------------------------------------------------------------------
  130.  
  131. -- SQL Type
  132. -- Options:
  133. -- 1. mysql
  134. -- 2. sqlite
  135. sql_type = "sqlite"
  136.  
  137. --- MySQL Connection Part (Ignore If You Are Using SQLite)
  138. sql_db = "otservown"
  139. sql_host = "localhost"
  140. sql_port = 3306
  141. sql_user = "root"
  142. sql_pass = ""
  143. map_db = ""
  144. sql_port = 3306
  145.  
  146. -- MD5 Passwords For Accounts
  147. -- Options:
  148. -- 1. 0 - (No)
  149. -- 2. 1 - (Yes)
  150. md5passwords = "no"
  151.  
  152. -------------------------------------------------------------------------------------------------
  153. ---------------------------- EldinWorld Basic Configuration -------------------------------------
  154. -------------------------------------------------------------------------------------------------
  155.  
  156. -- World Name: (Shows In The Character List)
  157. worldname = "OTMadness"
  158.  
  159. -- Time To Save The Server: (Default = 5)
  160. autosave = 10
  161.  
  162. -- Time For The Automap Clean: (5 = 5 Minutes) (0 = Off = No MapCleaning)
  163. autocleanmap = 0
  164.  
  165. -- Can A Player Attack Hes Own Summons? (Choose No To Prevent Players At Non-PvP Type Kill Another Player By Attacking As For Example Its Own Fire Elemental)
  166. -- Options:
  167. -- 1. 0 - (No)
  168. -- 2. 1 - (Yes)
  169. canattackownsummons = "no"
  170.  
  171. -- How Many Floors A Monster Can Go From The Spawn Without Despawning:
  172. despawnrange = 2
  173.  
  174. -- How Many Square Meters A Monster Can Run From The Spawn Before Despawning:
  175. despawnradius = 100
  176.  
  177. -- House Rent Period
  178. -- Options:
  179. -- 1. daily
  180. -- 2. weekly
  181. -- 3. monthly
  182. houserentperiod = "monthly"
  183.  
  184. -- Price For Each SQM When Buying A House:
  185. houseprice = 100
  186.  
  187. -- Level To Buy A House:
  188. houselevel = 30
  189.  
  190. -- Use Item Hotkeys? (Like Runes For Ingame Aimbot)
  191. -- Options:
  192. -- Disabled = 0
  193. -- Enabled = 1
  194. enablehotkeys = 0
  195.  
  196. -- Do You Want To Enable Cap System?
  197. -- Options:
  198. -- 1. Yes
  199. -- 2. No
  200. capsystem = "no"
  201.  
  202. -- Should Everyone Begin With Premium Account?
  203. -- Options:
  204. -- 1. Yes
  205. -- 2. No
  206. freepremium = "no"
  207.  
  208. -- Premium Account Costs Per Day:
  209. costperday = 500
  210.  
  211. -- How Many Premium Days You Will Get By Using The Command:
  212. buypremdays = 10
  213.  
  214. -- Remove Distance Ammo:
  215. -- Options:
  216. -- 0 = Everything.
  217. -- 1 = Nothing.
  218. -- 3 = Everything Except Spears.
  219. removeammocount = 1
  220.  
  221. -- Remove Rune Charges? (Hmms, Explos, GFBs, UHs, SDs Etc)
  222. -- Options:
  223. -- 1. Yes
  224. -- 2. No
  225. removerunecharges = "yes"
  226.  
  227. -- Should Players Be Able To Use Runes As Weapons? (Like Standing Beside A Creature SDing It By Having The SD In The Hand)
  228. -- Options:
  229. -- 1. Yes
  230. -- 2. No
  231. useruneasweapon = "yes"
  232.  
  233. -- Town ID Where The Player Will Be Teleported To If THe Premium Account Ends:
  234. freetownid = 1
  235.  
  236. -- Anti-Afk-System - Online Time Until The Player Gets Kicked: (1 = 1 Minute, Real Tibia = 15)
  237. kicktime = 15
  238.  
  239. -- Maximum Death Entries Per Player: (Will Be Found In Each Character File In data/players)
  240. maxdeathentries = 10
  241.  
  242. -- Time To Wait Before You Can Open A Body If Someone Else Killed That Creature: (1 = 1 Second)
  243. corpsemuted = 15
  244.  
  245. -- The Range You Can Be From The Leader When Using Party Sharing Experience System:
  246. partyShareRange = 2000
  247.  
  248. -------------------------------------------------------------------------------------
  249. ----------------------------------- Multipliers -----------------------------------
  250. -------------------------------------------------------------------------------------
  251.  
  252. -- Experience Multiplier: (How Much Faster You Get Experience From Monsters, Real Tibia = 1)
  253. rate_exp = 5
  254.  
  255. -- Monster Lootrating: (How Much Faster You Get Loot From Monsters, Real Tibia = 1)
  256. rate_loot = 1
  257.  
  258. -- Skill Multiplier: (Another Multiplier Can Be Found In data/vocations.xml, Real Tibia = 1)
  259. rate_skill = 10
  260.  
  261. -- Manaspent Multiplier: (Another Multiplier Can Be Found In data/vocations.xml, Real Tibia = 1)
  262. rate_magic = 2
  263.  
  264. -- How Many Monsters Spawn At A Time In 1 Spawn: (Basic From The MapEditor = 1, Raise This If You The Spawn Rate To Low)
  265. rate_spawn = 1
  266.  
  267. --------------------------------------------------------------------------------------
  268. --------------------------- Account Manager Config -----------------------------------
  269. --------------------------------------------------------------------------------------
  270.  
  271. -- The Account Number To Create A New Account:
  272. managernumber = 111111
  273.  
  274. -- Choose The New Players Level, Experience, Health, Mana And Cap:
  275. newplayerlevel = 8
  276. newplayerexperience = 4400
  277. newplayerhealth = 185
  278. newplayermana = 35
  279. newplayercap = 435
  280.  
  281. -- Temple Starting Cordinations: (X, Y, Z)
  282. newplayerposx = 86
  283. newplayerposy = 49
  284. newplayerposz = 7
  285.  
  286. -- Should Players Be Able To Choose Vocation? (Choose No If You Have A RookGuard)
  287. -- Options:
  288. -- 1. Yes
  289. -- 2. No
  290. managerchoosevoc = "yes"
  291.  
  292. -----------------------------------CONFIG END------------------------------------------
  293.  
  294. -- custom client config
  295. -- players with invalid client version / datsig / sprsig / picsig will be denied.
  296. -- change datsig/sprsig/picsig to 0 to disable checking them.
  297. -- clientversion must be the version of the client you're using multiplied by 100
  298. -- For example, to only accept 7.92 clients, clientversion should be 792
  299. -- clientversion must be checked, so setting it to 0 will not disable checking for it. It will only give EVERYONE an error when logging in.
  300. -- NOTE: Program included in Signature Retreiver map to retreive the tibia.dat/spr/pic its signature!
  301. clientversion=810
  302. datsig=0
  303. sprsig=0
  304. picsig=0
  305. badclienterror="This server requires client version 8.1."
Add Comment
Please, Sign In to add comment