• 🏆 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!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

[General] About the Build button.

Status
Not open for further replies.
Level 6
Joined
May 4, 2012
Messages
187
Just open Gameplay Constants and find it.

If you can't, then it can't be done.
 
Last edited by a moderator:
Level 28
Joined
Jan 26, 2007
Messages
4,789
Just open Gameplay Constants and find it.

If you can't, then it can't be done.
There are loads of values that cannot be changed in Gameplay Constants/Game Interface, but can be changed with the use of text-files (like the tooltip/hotkey of the Attack-command, the font, or the loading bar text).

I found this text-file:
"Units\CommandFunc.txt"
Code:
[CmdMove]
Art=CommandMove
Buttonpos=0,0

[CmdAttack]
Art=CommandAttack
Buttonpos=3,0

[CmdAttackGround]
Art=CommandAttackGround
Buttonpos=3,1

[CmdBuild]
Art=CommandBasicStruct
Buttonpos=0,2

[CmdBuildHuman]
Art=CommandBasicStructHuman
Buttonpos=0,2

[CmdBuildOrc]
Art=CommandBasicStructOrc
Buttonpos=0,2

[CmdBuildNightElf]
Art=CommandBasicStructNightElf
Buttonpos=0,2

[CmdBuildUndead]
Art=CommandBasicStructUndead
Buttonpos=0,2

[CmdCancel]
Art=CommandCancel
ButtonPos=3,2

[CmdCancelBuild]
Art=CommandCancel
ButtonPos=3,2

[CmdCancelTrain]
Art=CommandCancel
ButtonPos=3,2

[CmdCancelRevive]
Art=CommandCancel
ButtonPos=3,2

[CmdHoldPos]
Art=CommandHoldPosition
Buttonpos=2,0

[CmdPatrol]
Art=CommandPatrol
Buttonpos=0,1

[CmdPurchase]
Art=CommandPurchase
Buttonpos=0,0

[CmdRally]
Art=CommandRally
Buttonpos=3,1
PlacementModel=UI\Feedback\RallyPoint\RallyPoint.mdl

[CmdSelectSkill]
Art=CommandNewSkill
Buttonpos=3,1

[CmdStop]
Art=CommandStop
Buttonpos=1,0

//[CmdUnivAgi]
//Art=
//Buttonpos=2,0

//[CmdUnivInt]
//Art=
//Buttonpos=1,0

//[CmdUnivStr]
//Art=
//Buttonpos=0,0
That said, I cannot seem to get the button positions of the build-icons to work (I've tried pretty much all the others, and all of them work - the build icon is just being stubborn for me).
 
Status
Not open for further replies.
Top