Jump to content

bountygiver

Members
  • Posts

    8
  • Joined

  • Last visited

Nexus Mods Profile

About bountygiver

bountygiver's Achievements

Rookie

Rookie (2/14)

  • First Post
  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

0

Reputation

  1. You can make the ability trigger on TakeDamage event post state submit, then make the custom BuildGameState lookup history to recover any reserveactionpoints lost
  2. You can use a hacky way of putting the config on another object and add an init function to your actor, where you pass in a name it creates an object with that name, then extract all the configs from that object.
  3. Screens actually can only receive a very limited set of key presses through onunrealcommand. The input controller filters it beforehand.
  4. PossibleStartingRegions is only used if BestStartingRegions is empty, and BestStartingRegions is determined by finding a region with connections to at least 2 regions that is in different continent to the starting region.
  5. http://steamcommunity.com/sharedfiles/filedetails/?id=674886999
  6. it is actually possible to add additional slots without highlander, it just requires using gamestatecomponent to store the extra equipped items, and move them into their respectifve slot before tactical init (no item count limit validation there). Basically the only thing you will be overwriting will be the squad select screen because the utility slots UI is hard coded there.
  7. you just put stuff like this into your UIScreen class simulated function bool OnUnrealCommand(int cmd, int arg) { if( !CheckInputIsReleaseOrDirectionRepeat(cmd, arg) ) return false; switch( cmd ) { case class'UIUtilities_Input'.const.FXS_BUTTON_B: case class'UIUtilities_Input'.const.FXS_KEY_ESCAPE: case class'UIUtilities_Input'.const.FXS_R_MOUSE_DOWN: OnCancel(); break; } return super.OnUnrealCommand(cmd, arg); } This example is how you implement closing a screen (OnCancel() function) with ESC/Controller button B/Right click Note that screens don't catch listen to all input, you can listen to ctrl/alt/esc/arrows/mouse clicks/controller buttons
  8. Try opening the Gameplay -> Settings menu, it contains a list of variables containing data stored for parameters used in the game. For Alchemy gold cost, I believe the variable you are looking for would be: fAlchemyGoldMult. Modifying this value should change the gold multipliers for the potions you make. Hope this helps :)
×
×
  • Create New...