View Single Post
  #7  
Old 03-11-2008, 07:25 PM
Eloricth Eloricth is offline
Just call me Elo
Eloricth's Primary Pirate Info

Join Date: Feb 2008
Posts: 75
Eloricth is scurvy dog
My letter to their tech support...

Dear Tech Support;

As I'm sure you're well aware from other reports, there appears to be a glitch with unlocking the grenade quest. The glitch being that some people are not receiving the quests needed to unlock this weapon skill upon reaching notoriety level 20.

While I don't know what is the cause of this bug (unfortunately), I feel that it should be an easy enough endeavor to correct the characters missing the quests. Here is a pseudo-code solution:

Assume we have a connection to the character database and have row data cast as variables in our logic...

Code:
if(accountType = unlimited && notorietyLevel >19 && !grenadeQuest) {
    character.addQuest(grenadeQuest);
}
where the addQuest() function is whatever function is already in place that adds a new quest to your existing list of quests.

Thank you for your time,
-Elo