top of page

Emergency update: GCL v.1.23 Free premium (Formerly GamerSave) hacked bug fix

bug: wild gem value (cost to duplicate) > grade 12 = NaN

solution: adding combining cost and first grader to the Ingame > creator

replaced a section of the code with...

_loc4_.cost = Number(Number(Number(Number(Number(Math.pow(2,gem_grade) * firstgrade_cost))))); _loc4_.cost = Number(Number(Number((Math.pow(2,gem_grade) - 1) * combine_cost + _loc4_.cost))); if(_loc4_.cost <= 0) { _loc4_.cost = 0 } if(_loc4_.cost == NaN) { _loc4_.cost = 0 }

added a section to the code:

var combine_cost:Number = Math.ceil(77 * (1 - 0.01 * this.core.skillEffectiveValues[SkillId.LOWER_CREATING_AND_COMBINING_MANA_COST])); var firstgrade_cost:Number = Math.floor(77 * (1 - 0.01 * this.core.skillEffectiveValues[SkillId.LOWER_CREATING_AND_COMBINING_MANA_COST]));

Tags:

Featured Posts
Check back soon
Once posts are published, you’ll see them here.
Recent Posts
Archive
Search By Tags
Follow Us
  • Facebook Basic Square
  • Twitter Basic Square
  • Google+ Basic Square
bottom of page