Patch 1.29 is live No New Posts Site News & Updates

Started by
moyack

0 Members and 1 Guest are viewing this topic.

Patch 1.29 is live
on: April 15, 2018, 12:22:49 AM

Related Topics or Resources





Hello my fellow Blizzmodders!!

Blizzard has made it again, now the patch 1.29 that was released on a PTR channel is now official. several features has been added and reviewed in the PTR installer of the game.

Specific Changes & Improvements
  • Widescreen support added. To prevent stretching there have been changes to the interfaces:
  • Added bookends to the in-game interface
  • Added black pillars in menus


Game lobbies expanded to support 24 players. We’ve added 12 new team colors. Thanks to Erkan and others for contributing to the new palette:
  • Player 13 - Maroon
  • Player 14 - Navy
  • Player 15 - Turquoise
  • Player 16 - Violet
  • Player 17 - Wheat
  • Player 18 - Peach
  • Player 19 - Mint
  • Player 20 - Lavender
  • Player 21 - Coal
  • Player 22 - Snow
  • Player 23 - Emerald
  • Player 24 - Peanut

Known Issues
  • Temporarily disabled Fixed Aspect Ratio in Video Options
  • Chaos Kodo Beasts are showing as idle workers in campaign missions
  • Unable to input text while keyboard settings are under different languages in zhCN and koKR locales
  • Certain elements in World Editor overlap
  • Set/GetAbilityOnXXXX functions are renamed to Set/GetAbilityActivatedXXXX
  • SetUnitNameAll is disabled for now
  • PlaySpecialEffect is disabled for now
  • PlaySpecialEffectWithTimeScale is disabled for now
  • Crash: With an ability that has "Disabled"=false, attempting to set "Disabled" to false again will crash the World Editor
  • UnitDisableAbility does not hide an ability with Hide=true and Disabled=false
  • Default map directory is for from maps when creating custom games
  • Resolution does not change properly when switching between windowed and full screen
  • Tooltips for hero abilities may not be updated
World Editor Upgrades
Now the things we're interested the more...
  • Object Limit: 30,000
  • Neutral Units: 2,048
  • Neutral Buildings: 384
  • Player Units: 4,320
  • Player Buildings: 2,400
  • Items: 1,024
  • Map Size Limit: 480 x 480
  • Tile Slot Limit: 16
  • Max Execution Limit: 3,000,000
  • Max Food Limit: 999
  • Max Resource Limit: 9,999,999
  • Array Size Limit: 32,768
  • "Always show Health Bars" now shows Mana Bars as well
New Natives
Code: jass
  1. native GetTriggerPlayerMouseX: takes nothing returns real
  2. native GetTriggerPlayerMouseY: takes nothing returns real
  3. native GetTriggerPlayerMousePosition: takes nothing returns location
  4. native GetTriggerPlayerMouseButton: takes nothing returns mousebuttontype
  5. native SetAbilityTooltip: takes integer abilCode, string tooltip, integer level returns nothing
  6. native SetAbilityActivatedTooltip: takes integer abilCode, string tooltip, integer level returns nothing
  7. native SetAbilityExtendedTooltip: takes integer abilCode, string ExtendedTooltip, integer level returns nothing
  8. native SetAbilityActivatedExtendedTooltip: takes integer abilCode, string ExtendedTooltip, integer level returns nothing
  9. native SetAbilityResearchTooltip: takes integer abilCode, string researchTooltip, integer level returns nothing
  10. native SetAbilityResearchExtendedTooltip: takes integer abilCode, string researchExtendedTooltip, integer level returns nothing
  11. native GetAbilityTooltip: takes integer abilCode, integer level returns string
  12. native GetAbilityActivatedTooltip: takes integer abilCode, integer level returns string
  13. native GetAbilityExtendedTooltip: takes integer abilCode, integer level returns string
  14. native GetAbilityActivatedExtendedTooltip: takes integer abilCode, integer level returns string
  15. native GetAbilityResearchTooltip: takes integer abilCode, integer level returns string
  16. native GetAbilityResearchExtendedTooltip: takes integer abilCode, integer level returns string
  17. native SetAbilityIcon: takes integer abilCode, string iconPath returns nothing
  18. native GetAbilityIcon: takes integer abilCode returns string
  19. native SetAbilityActivatedIcon: takes integer abilCode, string iconPath returns nothing
  20. native GetAbilityActivatedIcon: takes integer abilCode returns string
  21. native GetAbilityPosX: takes integer abilCode returns integer
  22. native GetAbilityPosY: takes integer abilCode returns integer
  23. native SetAbilityPosX: takes integer abilCode, integer x returns nothing
  24. native SetAbilityPosY: takes integer abilCode, integer y returns nothing
  25. native GetAbilityActivatedPosX: takes integer abilCode returns integer
  26. native GetAbilityActivatedPosY: takes integer abilCode returns integer
  27. native SetAbilityActivatedPosX: takes integer abilCode, integer x returns nothing
  28. native SetAbilityActivatedPosY: takes integer abilCode, integer y returns nothing
  29. native GetUnitMaxHP: takes unit whichUnit returns integer
  30. native SetUnitMaxHP: takes unit whichUnit, integer hp returns nothing
  31. native GetUnitMaxMana: takes unit whichUnit returns integer
  32. native SetUnitMaxMana: takes unit whichUnit, integer mana returns nothing
  33. native DeleteHeroAbility: takes unit whichUnit, integer abilCode returns nothing
  34. native SetItemName: takes item whichItem, string name returns nothing
  35. native SetItemDescription: takes item whichItem, string name returns nothing
  36. native GetItemDescription: takes item whichItem returns string
  37. native SetItemTooltip: takes item whichItem, string name returns nothing
  38. native GetItemTooltip: takes item whichItem returns string
  39. native SetItemExtendedTooltip: takes item whichItem, string name returns nothing
  40. native GetItemExtendedTooltip: takes item whichItem returns string
  41. native SetItemIconPath: takes item whichItem, string name returns nothing
  42. native GetItemIconPath: takes item whichItem returns string
  43. native SetUnitName: takes unit whichUnit, string name returns nothing
  44. native SetHeroProperName: takes unit whichUnit, string name returns nothing
  45. native GetUnitBaseDamage: takes unit whichUnit, integer weaponIndex returns integer
  46. native SetUnitBaseDamage: takes unit whichUnit, integer baseDamage, integer weaponIndex returns nothing
  47. native GetUnitDiceNumber: takes unit whichUnit, integer weaponIndex returns integer
  48. native SetUnitDiceNumber: takes unit whichUnit, integer diceNumber, integer weaponIndex returns nothing
  49. native GetUnitDiceSides: takes unit whichUnit, integer weaponIndex returns integer
  50. native SetUnitDiceSides: takes unit whichUnit, integer diceSides, integer weaponIndex returns nothing
  51. native GetUnitAttackCooldown: takes unit whichUnit, integer weaponIndex returns real
  52. native SetUnitAttackCooldown: takes unit whichUnit, real cooldown, integer weaponIndex returns nothing
  53. native SetSpecialEffectColorByPlayer: takes effect whichEffect, player whichPlayer returns nothing
  54. native SetSpecialEffectColor: takes effect whichEffect, integer r, integer g, integer b returns nothing
  55. native SetSpecialEffectAlpha: takes effect whichEffect, integer alpha returns nothing
  56. native SetSpecialEffectScale: takes effect whichEffect, real scale returns nothing
  57. native SetSpecialEffectPosition: takes effect whichEffect, real x, real y, real z returns nothing
  58. native SetSpecialEffectHeight: takes effect whichEffect, real height returns nothing
  59. native SetSpecialEffectTimeScale: takes effect whichEffect, real timeScale returns nothing
  60. native SetSpecialEffectTime: takes effect whichEffect, real time returns nothing
  61. native SetSpecialEffectOrientation: takes effect whichEffect, real yaw, real pitch, real roll returns nothing
  62. native SetSpecialEffectYaw: takes effect whichEffect, real yaw returns nothing
  63. native SetSpecialEffectPitch: takes effect whichEffect, real pitch returns nothing
  64. native SetSpecialEffectRoll: takes effect whichEffect, real roll returns nothing
  65. native SetSpecialEffectX: takes effect whichEffect, real x returns nothing
  66. native SetSpecialEffectY: takes effect whichEffect, real y returns nothing
  67. native SetSpecialEffectZ: takes effect whichEffect, real z returns nothing
  68. native SetSpecialEffectPositionLoc: takes effect whichEffect, location loc returns nothing
  69. native GetLocalSpecialEffectX: takes effect whichEffect returns real
  70. native GetLocalSpecialEffectY: takes effect whichEffect returns real
  71. native GetLocalSpecialEffectZ: takes effect whichEffect returns real
  72. native GetUnitArmor: takes unit whichUnit returns real
  73. native SetUnitArmor: takes unit whichUnit, real armorAmount returns nothing
  74. native UnitHideAbility: takes unit whichUnit, integer abilId, boolean flag returns nothing
  75. native UnitDisableAbility: takes unit whichUnit, integer abilId, boolean flag, boolean hideUI returns nothing
  76. native UnitCancelTimedLife: takes unit whichUnit returns nothing
  77. native IsUnitSelectable: takes unit whichUnit returns boolean
  78. native IsUnitInvulnerable: takes unit whichUnit returns boolean
  79. native UnitInterruptAttack: takes unit whichUnit returns nothing
  80. native GetUnitCollisionSize: takes unit whichUnit returns real
  81. native GetAbilityManaCost: takes integer abilId, integer level returns integer
  82. native GetAbilityCooldown: takes integer abilId, integer level returns real
  83. native SetUnitAbilityCooldown: takes unit whichUnit, integer abilId, integer level, real cooldown returns nothing
  84. native GetUnitAbilityCooldown: takes unit whichUnit, integer abilId, integer level returns real
  85. native GetUnitAbilityCooldownRemaining: takes unit whichUnit, integer abilId returns real
  86. native EndUnitAbilityCooldown: takes unit whichUnit, integer abilCode returns nothing
  87. native GetUnitAbilityManaCost: takes unit whichUnit, integer abilId, integer level returns integer
  88. native GetLocalUnitZ: takes unit whichUnit returns real
  89. native DecPlayerTechResearched: takes player whichPlayer, integer techid, integer levels returns nothing
  90. native SetEventDamage: takes real damage returns nothing

With all this stuff, we addressed a new situation: many maps that worked in the previous versions of WC3 are not working anymore in this version, so it's needed to make a kind of upgrade to the maps and manage a versioning in them: save the map for players which don't intend to upgrade to 1.29 and offer a version compatible with 1.29. Seeing the changes made in the coding part it's mandatory to check the functions created in the custom maps to fix possible bugs in the porting to 1.29.

If you need any help, you can share your issues in the discord channel https://discordapp.com/invite/GnBkkrn or in the "Patch 1.29 map conversion thread".

Let's rejoice for this new patch!!!

Source: https://us.battle.net/forums/en/bnet/topic/20762137149
« Last Edit: September 09, 2018, 11:47:43 AM by moyack »



 

Started by Purgeandfire

Replies: 0
Views: 2645
Tutorial Zone

Started by moyack

Replies: 0
Views: 6003
Site News & Updates

Started by moyack

Replies: 0
Views: 6066
Site News & Updates

Started by moyack

Replies: 0
Views: 5796
Site News & Updates

Started by moyack

Replies: 0
Views: 5280
Site News & Updates
Vivir aprendiendo.co - A place for learning stuff, in Spanish   Chaos Realm - The world of Game modders and wc3 addicts   Diplo, a gaming community   Power of Corruption, an altered melee featuring Naga and Demon. Play it now!!!   WC3JASS.com - The JASS Vault + vJASS and Zinc   Jetcraft - A Starcraft II mod   WormTastic Clan (wTc)   Warcraft RESOURCES Reforged: Modelos, mapas, proyectos y mas...