Hi this is my 1st ever script and its very basic
what it allows you to do is to set a specific skill to be an actors normal attack.
#==============================================================================
# ? Actor Alt Attacks
#------------------------------------------------------------------------------
# ?this script allows you to define a skill to be used for the main attack
# for each actor the default skill is skill id 1 this can be changed
#==============================================================================
class Game_BattlerBase
#--------------------------------------------------------------------------
# ? Get the ID of the skill for normal attacks
#--------------------------------------------------------------------------
def attack_skill_id
if @actor_id == 2 # Natalie
return 4 # Wind
end
if @actor_id == 1 # Eric
return 3 # Fire
else
return 1 # Attack
end
end
end
hope you like and i welcome any advice or suggestions