Code: Select all
for i = 1, 4 do
party.party:getChampion( i ):addSkillPoints( 2 )
end
for i = 1, 4 do
if party.party:getChampion( i ):getClass == “farmer” then party.party:getChampion( i ):addSkillPoints( 2 )
end
Code: Select all
for i = 1, 4 do
party.party:getChampion( i ):addSkillPoints( 2 + ( party.party:getChampion( i ):getClass == “farmer” ) * 2 )
end