Login Script - Need help

bowie

Senior Member
Can anyone help me fix this script for the new launcher?

Code:
function main()
{
 if !${LavishScript.Executable.Find["ExeFile.exe"](exists)}
 {
  Script:End
 }
 ext isxeve
 wait 200
 uplink remote -connect PC_XBLADE
 ;uplink remote -connect PC_XPS
 Login:SetPassword["yourpassword"]
 wait 10
 Login:Connect
 wait 300
 run dronesave
 run dronebind
 run locmon
 ;CharSelect:ClickCharacter
}
 

CyberTech

Rest in Peace
Staff member
Can anyone help me fix this script for the new launcher?

Code:
function main()
{
 if !${LavishScript.Executable.Find["ExeFile.exe"](exists)}
 {
  Script:End
 }
 ext isxeve
 wait 200
 uplink remote -connect PC_XBLADE
 ;uplink remote -connect PC_XPS
 Login:SetPassword["yourpassword"]
 wait 10
 Login:Connect
 wait 300
 run dronesave
 run dronebind
 run locmon
 ;CharSelect:ClickCharacter
}
The launcher script in the EVEBot source is generic, not just for EVEBot. Just add your bots you want to start to the switch in the main script, and add your uplink commands, rather than using this -- the EVEBot launcher has far more functionality than this script does, and already works, as a bonus :)
 
Top Bottom