What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Weapon Swap - Weapon Sets

tozededao

Community Developer
Joined
Jan 15, 2010
Messages
1,225
Reaction score
5
From my understanding there is a way to use the weapon swap key which is Loki.Game.GameData.ActionKeys.weapon_swap ?

Is there anything that retrieves which weapon set is currently active?

If not I'll have to discover what weapon set I have equiped by the equiped weapon name if it is possible at all. I want to have Reaper's Pursuit on my secondary weapon set and make the bot swap it.
 
The 'current' weapon set you're using is obtainable by accessing the main left/right hand inventory slots.

LokiPoe.InGameState.InventoryPanel.LeftHand
LokiPoe.InGameState.InventoryPanel.RightHand

Simply by checking to see what the item's name is, for example, you can know if you need to swap weapons or not.

Your 'other' set is always stored in:

LokiPoe.InGameState.InventoryPanel.OffLeftHand
LokiPoe.InGameState.InventoryPanel.OffRightHand
 
The 'current' weapon set you're using is obtainable by accessing the main left/right hand inventory slots.

LokiPoe.InGameState.InventoryPanel.LeftHand
LokiPoe.InGameState.InventoryPanel.RightHand

Simply by checking to see what the item's name is, for example, you can know if you need to swap weapons or not.

Your 'other' set is always stored in:

LokiPoe.InGameState.InventoryPanel.OffLeftHand
LokiPoe.InGameState.InventoryPanel.OffRightHand

I managed to discover that meanwhile, thanks anyway :)
 
Back
Top