• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • 🏆 Hive's 6th HD Modeling Contest: Mechanical is now open! Design and model a mechanical creature, mechanized animal, a futuristic robotic being, or anything else your imagination can tinker with! 📅 Submissions close on June 30, 2024. Don't miss this opportunity to let your creativity shine! Enter now and show us your mechanical masterpiece! 🔗 Click here to enter!

INcreasing hero max level

Status
Not open for further replies.

hdm

hdm

Level 9
Joined
Nov 19, 2011
Messages
384
how to increase hero's max level?Other,how does work the offset system ?like in every spell that has "move unit instantly...offset by XX XX".What is polar? What is offset? What does point with polar offset mean?so if I use offset with "move unit instantly" the unit will not move instantly ???
 
Level 29
Joined
Mar 10, 2009
Messages
5,016
1) look at GameConstants in the Advanced menu >>> Hero Level, set it to your needs...

2) Polar offsets is the gap/distance from Loc1 to Loc2 and you can use that to move your unit instantly, but be warned that it will leak if not used properly...

to use Polar offset properly without leaks, you need to specify;
  • Set Loc1 - Position of ???
  • Set Loc2 - Loc1 offset by ??? ......
  • Unit - Create 1 Footman for (TriggeringPlayer) at Loc2 facing Default building facing degrees
  • Custom script: call RemoveLocation(udg_Loc1)
  • Custom script: call RemoveLocation(udg_Loc2)
 
Status
Not open for further replies.
Top