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

Exit game, start new profile

in2fun

New Member
Joined
Sep 23, 2010
Messages
871
Reaction score
8
I'm having problems with exiting the game, then starting next profile.
Sometimes seems to work fine no problem, other times not. With latest DB build now can't get it to reset game for nothing.

I have tried
Code:
		<LeaveGame reason="Run is done" />  
		<LoadProfile profile="Start_Here.xml" />
That makes it leave game, then restart same profile doesn't load start_here.

Code:
		<LoadProfile profile="BigRed_START_HERE.xml" /> 
		<LeaveGame reason="Run is done" />
That makes it load next profile fine. But doesn't exit game. Just goes to next profile and runs empty map.

Code:
<Continue profile="START_HERE.xml" exitgame="true"/>
This used to work fine, but with change on Continue to LoadProfile, now doesn't work. Will throw errors on the Continue part.

So changed to
Code:
<LoadProfile profile="START_HERE.xml" exitgame="true"/>
It will load next profile fine, but will not exit game.

Can anyone tell me what is proper way to exit and start next profile?

Using latest build 284. United Giles Trinity
 
Ahh so explains why was working fine for so long. Then when updated to next BD, didnt use RadsAtom.

Tested with RadsAtom using
Code:
<Continue profile="START_HERE.xml" exitgame="true"/>

Works now. Tyvm

If wanted to run without RadsAtom is there a way?
 
This now works, was added by Nesox in the latest betas:
Code:
<LoadProfile profile="START_HERE.xml" leaveGame="true"/>
 
Back
Top