http://www.rmxp.org/forums/index.php?topic=50784.0
The script, for reference.
Problem one:
After splitting a party, saving, and exiting the program, all parties except the one selected on the save will be deleted. I made a slight work around, but its inefficient. I'm not sure if it's a script conflict, or if I'm misusing the script itself. In the provided demo, saving, and reloading causes an error aswell.
Problem two:
When creating multiple (in my case, just 2 total parties) parties, the items are deleted.
Once again, i may be misusing the script. I personally find the instructions vague in some respects.
The items do not return when the party regroups as a whole. attempting to work around it, i set a variable (just one, to test) to collect the amount of an item, before they were erased. In order to give them back.
http://i81.photobucket.com/albums/j205/ ... r10101.png[/img]
When the event ran, and the variable was processed, that is the error i received.
The exact line: actor = $game_actors[@parameters[1]]
A work around, an idea, or a script fix would all be very helpful.
As it stands, this is the only issue keeping my project from the last touch ups and test plays before i can finish.
It seems the info i provided is a bit jumbled. I was trying to provide as many details as possible, but it seems i got carried away.
I'd greatly appreciate your help!
The script, for reference.
Problem one:
After splitting a party, saving, and exiting the program, all parties except the one selected on the save will be deleted. I made a slight work around, but its inefficient. I'm not sure if it's a script conflict, or if I'm misusing the script itself. In the provided demo, saving, and reloading causes an error aswell.
Problem two:
When creating multiple (in my case, just 2 total parties) parties, the items are deleted.
Once again, i may be misusing the script. I personally find the instructions vague in some respects.
The items do not return when the party regroups as a whole. attempting to work around it, i set a variable (just one, to test) to collect the amount of an item, before they were erased. In order to give them back.
http://i81.photobucket.com/albums/j205/ ... r10101.png[/img]
When the event ran, and the variable was processed, that is the error i received.
Code:
#--------------------------------------------------------------------------
# * Control Variables
#--------------------------------------------------------------------------
def command_122
value = 0
case @params[3] # Operand
when 0 # Constant
value = @params[4]
when 1 # Variable
value = $game_variables[@params[4]]
when 2 # Random
value = @params[4] + rand(@params[5] - @params[4] + 1)
when 3 # Item
value = $game_party.item_number($data_items[@params[4]])
actor = $game_actors[@parameters[1]]
actor = $game_actors[@params[4]]
A work around, an idea, or a script fix would all be very helpful.
As it stands, this is the only issue keeping my project from the last touch ups and test plays before i can finish.
It seems the info i provided is a bit jumbled. I was trying to provide as many details as possible, but it seems i got carried away.
I'd greatly appreciate your help!