Advertisement
conan513

Untitled

Sep 10th, 2016
418
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.31 KB | None | 0 0
  1. [SIZE=4][B][U]SingleCore TC R2 Update 6 beta 1 test[/U][/B][/SIZE]
  2. Previous updates included.
  3.  
  4. [B][U]Update 6 beta 1 changes:[/U][/B]
  5. - TC core updated to 2016. sept. 02.
  6. - Console spam fixed
  7. - Few database warnings fixed
  8. - CrossFaction BG patch added (working with bots)
  9. - Highly nerfed the reward on every 10 level
  10.  
  11. [U]New lines in [B]world.conf[/B]:[/U]
  12. [CODE]###################################################################################################
  13. # CROSSFACTION BG CONFIG
  14. #
  15. #
  16. # CrossfactionBG.enable = 1 - Mixed battleground enabled.
  17. # CrossfactionBG.enable = 0 - Mixed battleground disabled.
  18.  
  19. CrossfactionBG.enable = 0
  20.  
  21. #
  22. ###################################################################################################[/CODE]
  23.  
  24. [QUOTE][B][U]Update 5 beta 4 changes:[/U][/B]
  25. - TC core updated to 2016. aug. 15.
  26. - Triforce Mall from [B]LordPsyan [/B]on GM Island
  27. - Fixed some level reward from [B]thesawolf[/B]
  28. - Testing a new npcbots position code
  29. - Reduced Npcbots melee damage (however the melee dmg is not working yet :D)
  30.  
  31. - [B]Update.bat improved[/B]
  32. Can reset randombots and npcbots
  33.  
  34. [B][U]Update 5 beta 2 and 3 test changes:[/U][/B]
  35. - TC core downed to 2016 july 08 (latest stable core)
  36. - Playerbots graveyard/respawn issue propably fixed
  37. - Scoreboard NPC faction fixed in Orgrimmar
  38. - All custom patches disabled by default in config files
  39.  
  40. - [B]Update.bat improved[/B]
  41. Can backup and restore characters database
  42. Can restore world database if you break it
  43.  
  44. - Most of playerbots and npcbots improvments pulled from [B]thesawolf[/B]
  45. Mega manual and how to use it here: [B][U][url]https://github.com/thesawolf/TrinityCore/blob/TrinityCoreLegacy/README_Bots.md[/url][/U][/B]
  46.  
  47. - [B]Rym[/B]'s updated BG patch from update 5 early test (only Warsong Gulch working)
  48.  
  49. [B][U]Update 5 early test changes:[/U][/B]
  50. - [B]NPCbots working in Windows release[/B] (need to test it)
  51. - Playerbots: added in init, update, random preventions to ALT characters ([B]thesawolf[/B])
  52. - Possible fix for NPCBot teleport to master crashing ([B]thesawolf[/B])
  53. - Added dormant npcbot commands... ([B]thesawolf[/B])
  54. - Npcbot changes to dismissing (revert to original behaviour) ([B]thesawolf[/B])
  55. - NotSoRandom bots ([B]thesawolf[/B])
  56.  
  57. [B][SIZE=4]Playerbot fixes/changes: ([B]thesawolf[/B])[/SIZE][/B]
  58. [QUOTE]- using .bot (command, besides lookup) without a bot or bot list specified
  59. would crash TC in the null to string conversion
  60. - permission fixes SEC_GAMEMASTER -> SEC_PLAYER so that players could
  61. properly use the playerbots.. might tighten this up more
  62. - some preliminary playerbot level checking to see if you really needed to
  63. reinit some things TODO: make a commandset with SQL flag toggle to NOT reinit
  64. (on a bot by bot basis).. for players that like to dress up their bots[/QUOTE]
  65.  
  66. [U]New lines in [B]bots.conf[/B]:[/U]
  67. [CODE]AiPlayerbot.NotSoRandom = 0
  68.  
  69. AiPlayerbot.ARAC = 0[/CODE]
  70.  
  71. [U]New lines in [B]world.conf[/B]:[/U]
  72. [CODE]
  73. ###################################################################################################
  74. # NPCBOT CONFIGURATION
  75. #
  76. # NpcBot.Enable
  77. # Description: Enable NpcBot system
  78. # Default: 1 - enable
  79. # 0 - disable
  80.  
  81. NpcBot.Enable = 1
  82.  
  83. #
  84. # NpcBot.AllowGM
  85. # Description: Allow GM's to have NpcBots
  86. # Default: 1 - Allow
  87. # 0 - disable
  88.  
  89. NpcBot.AllowGM = 1
  90.  
  91. # NpcBot.MaxBots
  92. # Description: Maximum number of bots allowed for players.
  93. # Default: 1
  94. # Recommend: 1-2
  95. # Max: 4
  96.  
  97. NpcBot.MaxBots = 4
  98.  
  99. # NpcBot.MaxBotsPerClass
  100. # Description: Maximum bots of each class allowed for players.
  101. # Default: 1
  102. # 0 - no limit
  103.  
  104. NpcBot.MaxBotsPerClass = 1
  105.  
  106. # NpcBot.BaseFollowDistance
  107. # Description: Default bot follow distance.
  108. # Note: This parameter determines bots' formation size, distance at which bots will chase and attack enemies.
  109. # Note2: This parameter is set for each player at login.
  110. # Default: 30
  111.  
  112. NpcBot.BaseFollowDistance = 20
  113.  
  114. # NpcBot.XpReduction
  115. # Description: XP percent penalty for each bot used starting with second.
  116. # Example: 3 bots, xp reduction is 20: ((3-1)*20) = 40%, 60% exp gained only.
  117. # Note: Maximum overall xp reduction is 90%.
  118. # Default: 0
  119.  
  120. NpcBot.XpReduction = 0
  121.  
  122. # NpcBot.HealTargetIconsMask
  123. # Description: Icon number bitmask which bots use to search for additional targets to heal (out of party).
  124. # Note: Many creatures cannot accept heal.
  125. # Example: to check Star, Triangle and Square we need 1 + 8 + 32 = 41.
  126. # Default: 0 (Disable)
  127. # 1 - Star
  128. # 2 - Circle
  129. # 4 - Diamond
  130. # 8 - Triangle
  131. # 16 - Moon
  132. # 32 - Square
  133. # 64 - Cross
  134. # 128 - Skull
  135.  
  136. NpcBot.HealTargetIconsMask = 0
  137.  
  138. # NpcBot.Mult.Damage.Melee
  139. # NpcBot.Mult.Damage.Spell
  140. # NpcBot.Mult.Healing
  141. # Description: Multipliers for bots' damage and healing. Allows to balance bots vs players.
  142. # Minimum: 0.1
  143. # Maximum: 10.0
  144. # Default: 1.0
  145.  
  146. NpcBot.Mult.Damage.Melee = 1.0
  147. NpcBot.Mult.Damage.Spell = 1.0
  148. NpcBot.Mult.Healing = 1.0
  149.  
  150. # NpcBot.Enable.Dungeon
  151. # NpcBot.Enable.Raid
  152. # NpcBot.Enable.BG
  153. # NpcBot.Enable.Arena
  154. # NpcBot.Enable.DungeonFinder
  155. # Description: Allow bots to enter PvE/PvP areas and Dungeon Finder query
  156. # Default: 1 - (NpcBot.Enable.Dungeon)
  157. # 0 - (NpcBot.Enable.Raid)
  158. # 0 - (NpcBot.Enable.BG)
  159. # 0 - (NpcBot.Enable.Arena)
  160. # 1 - (NpcBot.Enable.DungeonFinder)
  161.  
  162. NpcBot.Enable.Dungeon = 1
  163. NpcBot.Enable.Raid = 1
  164. NpcBot.Enable.BG = 1
  165. NpcBot.Enable.Arena = 1
  166. NpcBot.Enable.DungeonFinder = 1
  167.  
  168. # NpcBot.Limit.Dungeon
  169. # NpcBot.Limit.Raid
  170. # Description: Enable/Disable instance players limitation rules for bots.
  171. # Default: 1 - (NpcBot.Limit.Dungeon)
  172. # 1 - (NpcBot.Limit.Raid)
  173.  
  174. NpcBot.Limit.Dungeon = 1
  175. NpcBot.Limit.Raid = 1
  176.  
  177. # NpcBot.Cost
  178. # Description: Bot recruitment cost (in copper).
  179. # Note: This value is for level 80 characters.
  180. # Cost is reduced for lower levels by simple formula: (cost * level / 80).
  181. # Default: 1000000 (100 gold, 1g25s at level 1)
  182.  
  183. NpcBot.Cost = 1000000
  184.  
  185. # NpcBot.PvP
  186. # Description: Allow bots to attack player-controlled units (players, pets, bots, etc.)
  187. # Note: This rule only applies to player-controlled bots
  188. # Default: 1
  189.  
  190. NpcBot.PvP = 1
  191.  
  192. #
  193. ###################################################################################################
  194. [/CODE]
  195.  
  196. [B][U]Update 4 changes:[/U][/B]
  197. - Updated Battleground patch from [B]rym[/B]
  198. Now it's fully functional on [B][SIZE=4]Warsong Gulch[/SIZE][/B], some playerbots AI fix needed to make it complete.
  199. - All race all class(ARAC) client mode support added
  200.  
  201. [B][U]Update 3 changes:[/U][/B]
  202. - TC core updated to 2016.07.10
  203. - Rym battleground patch for playerbot added
  204.  
  205. [U]New lines in [B]bots.conf[/B]:[/U]
  206. [CODE]
  207. # AI Playerbots can join in Battlegrounds
  208. AiPlayerbot.RandomBotJoinBG = 1
  209.  
  210. # AI Playerbots pick up the player level
  211. AIPlayerbot.RandomBotBracketPlayer = 0[/CODE]
  212.  
  213. [B][U]Update 2 changes:[/U][/B]
  214. - TC core updated (2016.07.01)
  215. - Rochet2's GOmove
  216. - Phased Duel script
  217. - LoginBoA script
  218. - Starting guild script
  219. - Pet say script (just for fun)
  220. - Reset hp mp cooldown on login script
  221. - Visual enchant drop chance in world.conf
  222.  
  223. [B][U]Update 1 changes:[/U][/B]
  224. - LFG enabled, aoe changed to dps in bots default strategy (test)
  225. - Random visual enchant moved back to cpp script
  226. - Auto spell learn moved back to cpp script
  227. - New settings in [B]World.conf[/B]
  228.  
  229. [U]New lines in [B]world.conf[/B]:[/U]
  230. [CODE]
  231. ###################################################################################################
  232. #
  233. # Killstreak.Enable
  234. # Description: System announce every 5, 10, 15...etc killstreak in global chat.
  235. # Default: 1
  236.  
  237. Killstreak.Enable = 1
  238.  
  239. #
  240. # Killstreak.Battleground.Only
  241. # Description: Killstreak system only in battlegrounds.
  242. # Default: 0
  243.  
  244. Killstreak.Battleground.Only = 0
  245.  
  246. #
  247. # Loose.Token.On.PvP.Death
  248. # Description: Loosing PvP token if you killed by someone else.
  249. # Default: 0
  250.  
  251. Loose.Token.On.PvP.Death = 1
  252.  
  253. #
  254. # Add.Token.On.PvP.Kill
  255. # Description: You receive PvP token when you killing other players or bots
  256. # Default: 0
  257.  
  258. Add.Token.On.PvP.Kill = 1
  259.  
  260. #
  261. ###################################################################################################
  262.  
  263. ###################################################################################################
  264. #
  265. # StartGuild
  266. # Description: New players automatically added for the configurated guild IDs.
  267. # Example: StartGuild.Alliance = 45
  268. # StartGuild.Horde = 46
  269. # Default: 0 (disabled)
  270.  
  271. StartGuild.Alliance = 0
  272. StartGuild.Horde = 0
  273.  
  274. #
  275. ###################################################################################################
  276.  
  277. ###################################################################################################
  278. #
  279. # Solocraft.Enable
  280. # Description: Solocraft is a script to increase players and bots stats in raids,
  281. # based on group size. It feels a little Hacky, but raids is unfair hard with playerbots.
  282. # Default: 0
  283.  
  284. Solocraft.Enable = 0
  285.  
  286. #
  287. # Boss.Announcer.Enable
  288. # Description: System announce who killed a world boss in global.
  289. # Default: 1
  290.  
  291. Boss.Announcer.Enable = 1
  292.  
  293. #
  294. # Login.Announcer.Enable
  295. # Description: Announce every player and bots login
  296. # Default: 1
  297.  
  298. Login.Announcer.Enable = 1
  299.  
  300. #
  301. # Auto.Spell.Learn
  302. # Description: Learning spells automatically on levelup.
  303. # Default: 1
  304.  
  305. Auto.Spell.Learn = 1
  306.  
  307. #
  308. # Random.Visual.Enchant
  309. # Description: You have 25% chance to loot weapons with a random visual enchant.
  310. # Only a visual tuning, not a real enchant
  311. #
  312. # Default: Random.Visual.Enchant = 1
  313. # Visual.drop.chance = 0.10 (0.10 = 10% chance, 1.0 = 100%)
  314.  
  315. Random.Visual.Enchant = 1
  316. Visual.drop.chance = 0.10
  317.  
  318. #
  319. # Reset.on.login
  320. # Description: Restore players health, mana and cooldowns when log into the game.
  321. # Default: 0
  322.  
  323. Reset.on.login = 0
  324.  
  325. #
  326. # Login.BoA
  327. # Description: New players get some starting equipment.
  328. # Default: 0
  329.  
  330. Login.BoA = 0
  331.  
  332. #
  333. # PhasedDueling.Enable
  334. # Description: On the start of a duel, the system create a separated phase
  335. # for the duel partners and hide the other players.
  336. # Default: 0
  337.  
  338. PhasedDueling.Enable = 0
  339.  
  340. #
  341. ###################################################################################################
  342. [/CODE][/QUOTE]
  343.  
  344. [B][U][SIZE=4][URL="http://www.mediafire.com/download/edg8eltnm8cnq6w/TCR2update6_beta1.zip"]Download[/URL][/SIZE][/U][/B]
  345.  
  346. [B][U]How to install:[/U][/B]
  347. 1. Copy and overwrite all files
  348. 2. Run the [B]Update.bat[/B] while the database server is running and select [B]Import database updates[/B] option
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement