Thrax989 / SWGFlurry

SWG Flurry is a Starwars Galaxies server utilizing the SWGEmu Core3 Emulator.
http://www.swgflurry.com/
GNU Affero General Public License v3.0
2 stars 12 forks source link

Rebel faction point costs not consistent/broken #47

Closed mikeface closed 7 years ago

mikeface commented 7 years ago

Faction point cost is seemingly broken for rebels. Race should not matter for rebels, and cost should go down with rank. Example costs below.

Char one: Rodian, corporal Alliance detachment HQ: 29250

Char two: Rodian, Second Lt Alliance detachment HQ: 39000

Even same race, there's something odd that a lower rank has a lower cost than the higher rank.

Thrax989 commented 7 years ago

https://github.com/Thrax989/SWGFlurry/commit/6a5ad2a14ffa0b05f883f973d713997f6fec645c

The multipliers are a bit off -- assign points to each type of base -- s01=Forward Outpost, s02 = Field Hospital , s03 = Tactical Center, s04 = Detach HQ HQValues = { {"object/building/faction_perk/hq/hq_s01_imp_pvp.iff", 2}, {"object/building/faction_perk/hq/hq_s01_imp.iff", 1}, {"object/building/faction_perk/hq/hq_s02_imp_pvp.iff", 6}, {"object/building/faction_perk/hq/hq_s02_imp.iff" , 3}, {"object/building/faction_perk/hq/hq_s03_imp_pvp.iff" , 8}, {"object/building/faction_perk/hq/hq_s03_imp.iff", 4}, {"object/building/faction_perk/hq/hq_s04_imp_pvp.iff", 20}, {"object/building/faction_perk/hq/hq_s04_imp.iff", 10}, {"object/building/faction_perk/hq/hq_s01_rebel_pvp.iff", 2}, {"object/building/faction_perk/hq/hq_s01_rebel.iff", 1}, {"object/building/faction_perk/hq/hq_s02_rebel_pvp.iff", 6}, {"object/building/faction_perk/hq/hq_s02_rebel.iff" , 3}, {"object/building/faction_perk/hq/hq_s03_rebel_pvp.iff" , 8}, {"object/building/faction_perk/hq/hq_s03_rebel.iff", 4}, {"object/building/faction_perk/hq/hq_s04_rebel_pvp.iff", 20}, {"object/building/faction_perk/hq/hq_s04_rebel.iff", 10}, {"object/building/general/rori_hyperdrive_research_facility.iff", 2}, {"object/building/general/bunker_imperial_weapons_research_facility_01.iff", 2}, {"object/building/general/bunker_imperial_detainment_center_01.iff", 2}, {"object/building/general/bunker_rebel_weapons_depot.iff", 2},

}

-- race (raceid, penalty_multiplier) -- raceid found in creatureobject --HUMAN = 0; RODIAN = 1; TRANDOSHAN = 2; MONCAL = 3; WOOKIE = 4; BOTHAN = 5; TWILEK = 6; ZABRAK = 7; ITHORIAN = 0x21; SULLUSTAN = 0x31; imperial_racial_penalty = { {0, 1}, {1, 3}, --rodian {2, 2}, -- trando {3, 3}, -- moncal {4, 3}, -- wookie {5, 2}, -- bothan {6, 1.5}, -- twilek {7, 2}, -- zabrack {33, 2}, --ithorian {49, 2}, -- sullustan

}