TheUnknownCod3r / BO4-Lucy-Menu

Updated Version of @G1llam 's BO4 Lucy Menu for PC.
19 stars 11 forks source link

Added upgraded and normal weapons #7

Closed TubBuddy closed 1 year ago

TubBuddy commented 1 year ago

I separated upgraded and normal weapons along with Samantha box and Winters Howl. I tried to add the Matryoshka dolls but no luck i tried all sorts of combinations but i just couldn't make it work.

TheUnknownCod3r commented 1 year ago

Other than what I highlighted this is fine. If you can add a check for those maps, i'd be happy to merge it.

TubBuddy commented 1 year ago

I could not fine the upgraded wunderwaffle sniper name Or any of the alistairs guns names

TheUnknownCod3r commented 1 year ago

I could not fine the upgraded wunderwaffle sniper name Or any of the alistairs guns names

The Wonderwaffe sniper isn't what you used in the upgraded section, but in game, you can just call the Print Weapon Name function, and it should output the DisplayName to an iPrintLnBold for you in future. Ive corrected the Wonderwaffe name from memory, but it may be incorrect. Alistairs Folly and Alistairs Annihilator I believe are guns I have hashes for, not stringnames due to being unable to locate them in raw files, its just a guessing scenario to figure most of them out. I appreciate the work you've put in, thank you again.

TheUnknownCod3r commented 1 year ago

You can use this to pull the Weapon Display name, which will show you the name you see on screen, not the hash.

GetWeaponDisplayName()
{
    WeaponName = self GetCurrentWeapon().DisplayName;
    self iPrintLnBold(WeaponName);
}
TubBuddy commented 1 year ago

Ahh thanks! Also you forgot to remove upgraded from both ray guns and the AO rayguns btw haha

TheUnknownCod3r commented 1 year ago

good call, I missed that one. Fixed, and again, thanks :)