Jump to content

Razzles

Members
  • Posts

    5
  • Joined

  • Last visited

    Never
  • Donations

    0.00 GBP 

Everything posted by Razzles

  1. This depends on which version of MySql you're using and what options you have set. Prior to version 5.1.15 of MySql the default behavior was to rollback the entire transaction in the event of a timeout. From 5.1.15 on, the default behavior is to only rollback the last statement. Using the option innodb_rollback_on_timeout will allow full transaction rollbacks. (Link to the MySql doc on this provided.) Hope that helps explain it.
  2. I tested this on a fresh install and found that without this patch druid flight form speeds are not being applied.
  3. When attempting to apply the patch, patch unexpectedly ends in middle of line patch: **** Only garbage was found in the patch input.
  4. That's because plr->ModifiyHonorPoints(30); is being executed AFTER the if/else statement, not as part of it. Change it to if (team == winner) { RewardMark(plr,ITEM_WINNER_COUNT); RewardQuestComplete(plr); plr->ModifiyHonorPoints(75); } else { RewardMark(plr,ITEM_LOSER_COUNT); plr->ModifiyHonorPoints(30); }
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Privacy Policy Terms of Use