• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

[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:
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