Ogrebot Autologin With Powershell

rscro

New Member
I wrote this quick cmdlet in powershell to autologin isxogre with isboxer. This cmdlet allows the starting of different profiles using a single script. I hope this is useful for anyone who wishes to use it, if anyone has any questions just let me know.

Code:
Function Start-EQ2 {
  [cmdletbinding()]
  param (
  [string][ValidateSet("myToV", "Melee")]$inSet = "myToV",
  [string][ValidateSet("TOV")]$boxSet = "TOV",
  [uint32]$timer = 100
  )
  begin {
  Write-Host "Starting EQ2 set"
  }
  process {
  & "C:\Program Files (x86)\InnerSpace\InnerSpace.exe" run isboxer -launch $boxSet
  Start-Sleep -Seconds $timer
  & "C:\Program Files (x86)\InnerSpace\InnerSpace.exe" runscript eq2ogrecommon/OgreAutoLogin/AutoLogin $inSet
  }
  end {
  }
}
 
Last edited:

mamrono

Active Member
I would like to take adv of this but I dont think I know how to modify it to my licking would you be able to help me please? Thanks.
 
Top Bottom