07-06-2011, 04:04 AM
The script call actually has two lines to it:
The first lets the game know the player is using two weapons (or at least using the 2nd hand). The second is the call that lets it know the 2nd slot is using a weapon.
$game_actors[ actor_id ].two_weapons = true
$game_actors[ actor_id ].weapons[ slot# ] = weapon_id
The slot# is either 0 or 1, representing the main weapon slot or the 2nd hand.
Code:
$game_actors[1].two_weapons = true
$game_actors[1].weapons[1] = 1
The first lets the game know the player is using two weapons (or at least using the 2nd hand). The second is the call that lets it know the 2nd slot is using a weapon.
$game_actors[ actor_id ].two_weapons = true
$game_actors[ actor_id ].weapons[ slot# ] = weapon_id
The slot# is either 0 or 1, representing the main weapon slot or the 2nd hand.