def steal_party
$game_variables[93]=[]
for i in 0...6
$game_variables.push($Trainer.party[i].clone)
$Trainer.party[i]=nil
end
$Trainer.party.compact!
end
def return_party
$Trainer.party=$game_variables[93]
end
Oh sry thats not what I meant.
I want the player to loose his team and than gets it
back.
$game_variables[90]=$Trainer.party
$Trainer.party=[]
Well Rot8er_ConeX gave you a very simple script to save your party in a variable, erase your party and get it back later. You can use a script call to do it. Need a tutorial?
Oh, btw why not just use
Code:$game_variables[90]=$Trainer.party $Trainer.party=[]
to save and erase the party?
If only it were somehow possible to test this to find out what actually happens.there's a very likely chance that