You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I dunno if they changed it but there is a problem in Portuguese version recognizing if RP is earnable.
AGORA key word can be added to .match part at line 3823 and 3828. That's how I am using it.
/*
* Don't fill in if we can't earn RP and AF would want to buy
* Omerta sometimes won't display "NOW" when rp can be earned for b/n actions.
* it just displays "The next time you can earn rank points from buying [booze|narcs] is"
* we'll handle that case too.
*/
if (!lbooze) {
if (!$('.smuggling-table-info:eq(0)').text().match(/NOW|AGORA|NU|booze is(\s+)$|kopen over(\s+)$/m) && $('input[name="typebooze"]:eq(1)').prop('checked') === true) {
b = -1;
}
}
if (!lnarcs) {
if (!$('.smuggling-table-info:eq(' + (lbooze ? 0 : 1) + ')').text().match(/NOW|AGORA|NU|narcotics is(\s+)$|kopen over(\s+)$/m) && $('input[name="typedrugs"]:eq(1)').prop('checked') === true) {
n = -1;
}
}
The text was updated successfully, but these errors were encountered:
I dunno if they changed it but there is a problem in Portuguese version recognizing if RP is earnable.
AGORA key word can be added to .match part at line 3823 and 3828. That's how I am using it.
/*
* Don't fill in if we can't earn RP and AF would want to buy
* Omerta sometimes won't display "NOW" when rp can be earned for b/n actions.
* it just displays "The next time you can earn rank points from buying [booze|narcs] is"
* we'll handle that case too.
*/
if (!lbooze) {
if (!$('.smuggling-table-info:eq(0)').text().match(/NOW|AGORA|NU|booze is(\s+)$|kopen over(\s+)$/m) && $('input[name="typebooze"]:eq(1)').prop('checked') === true) {
b = -1;
}
}
if (!lnarcs) {
if (!$('.smuggling-table-info:eq(' + (lbooze ? 0 : 1) + ')').text().match(/NOW|AGORA|NU|narcotics is(\s+)$|kopen over(\s+)$/m) && $('input[name="typedrugs"]:eq(1)').prop('checked') === true) {
n = -1;
}
}
The text was updated successfully, but these errors were encountered: