So you caught on.
Three years, I waited. Patiently loitered around until the time was right.
In hindsight, it was all a scam to begin with.
And I did, in fact, get away with it.
But I regret it now, all of it.
All the passwords weren't worth it. All this money can't even satisfy me now.
The Book is right. Blessings and curses, they exist.
I wish I could do things differently, but I'm stuck as this laughable old man now.
I'm only admitting this so it can give me ease in some way, otherwise I'd spend my time drinking like the heartless demon I am.
I hope you can forgive me loljk.

Best posts made by MAFINS
-
RE: Menyoo Virus Total Scan
-
RE: [SCRIPT] a web page like ebay.com (LUA)
With wix.com, you can create your own professional website...
-
RE: How do I do this? ( Simple Trainer )
"For all you wondering how to do this:
- Install the mod (simple trainer)
- Get the car you want to use.
- Go to object spawning in the mod menu and spawn a ramp (enter id or find it a different way i am not sure)
- Then Go to object spawning in the mod menu again and select attached objects menu and select Move attached object (vehicle) and then you can move the ramp/object around if needed. Done and fun!"
-Person
-
RE: Worries about ScripthookV not updating...
I've uploaded a Script hook clone alongside Menyoo that works with SHVDotNet. If you are having issues, try editing the ini. Let me know of any issues you have with it.
-
RE: Now they've killed Menyoo? Are you kidding me?
@cyberzone2 Literally the only thing you'd head from me regarding that since 2015 is that I don't support it. The site doesn't even belong to me. And the owner already has my source. He's cool but if I leave it the mod would become a disaster for online. So I just develop it (making sure it's not grief-esque like most online mods) and give it to the testers. I didn't have a computer (or laptop, really) fit enough to play the game before August 2016, so everything went to the testers for over a year anyway. And they demanded online back then. Was a fair trade. Went too far.
But yes, SP might have to be permanently shut down as well. -
RE: [Solved] - Any way to disable rockstar/gta online loading screens boxes?
-Open GTA5.exe in a hex editor and look for 72 6F 63 6B 73 74 61 72 5F 6C 6F 67 6F 73 00 62 69 6B
-Change it to 32 73 65 63 6F 6E 64 73 62 6C 61 63 6B 2E 62 69 6B 00
-Save
-Play -
RE: Need help to make gta interesting
@TheMurderousCricket Can't wait for the Shark pass every season. The kids aren't even in my custody but they're still going to want those for Christmas.
-
RE: Map Editor - blurry textures at far distances
@meimeiriver @BinaryGreen I made it that way on purpose because the Spooner cam would usually be near the player's ped in most map building situations (so the lod would be consistent), and this way the player's own ped can be used in the 'map' for task sequences and such.
-
RE: GTA:O Update: Smuggler's Run
@krashadam Simple trainer (by sjaak327), scripthookvdotnet, and some other mods worked with it, and after I updated it, many more did (no, I didn't post the updated version).
-
RE: [TOOL][WIP][C++/SHV] Lightweight Menu Library
Pretty cool.
But why does everybody like the default menu style so much? -
RE: Thoughts on what we can do to mod SP now
@Cass Well they are kind of right about the fact that it can be used online. I know players who have used it online.
But I don't see how mcLaren model swaps can harass other players. Players were able to model-swap faulty objects with normal ones to protect themselves from griefing (crash spamming) cheaters using openiv as well, afaik. -
RE: Thoughts on what we can do to mod SP now
Y'all want an unofficial broken scripthook? Most of the script stuff in the fivem source is outdated so I can't get thread slots in the thread pool for good performance but I can whip something up from my own stuff by hooking other things, I guess.
-
RE: Replacing Player Skins Destroys Campaign
This is a tricky one.
Hmm...
The easiest route would obviously be to remove the skin mods when doing those certain missions. -
RE: Menyoo error
means the second thread crashed
so it could be:
torque mult
flamethrower stungun
tv player
one of the 'online' player toggles
light gun
auto kill enemies
yacht builder
manual respawn
magnet gun
inf rocket voltic boost
cash bag protection (Which should be off in the config btw, make sure of it)
so figure it out idk
meh -
RE: Input text
You can make a custom input box from scratch if you want it at a different position, but the default gta one is in the middle.
-
RE: FPS Drop GTA 5 with The Flash Mod, Iron Man Mod, Ghostrider Mod ... etc
Could be due to the high quality textures used in those player models.
And as for the running, that may be because of the particle effects and the fact that textures have to load up fast. -
RE: Input text
If you're not using ScriptHookVDotNet,
using namespace GTA::Natives::Gameplay;
DISPLAY_ONSCREEN_KEYBOARD(true, "titleText(gxtLabelOnly)", "", "prePresentText", "", "", "", maxChars + 1);
while (UPDATE_ONSCREEN_KEYBOARD() == 0)
{
WAIT(0);
}
if (UPDATE_ONSCREEN_KEYBOARD() == 2)
{
result = "If ESC is pressed";
}result = GET_ONSCREEN_KEYBOARD_RESULT();
-
RE: Spawn as a MP character in SP
Just make something that does this. Although this won't get you YOUR online character, you can blemish it to look like him/her. Also, this may just not work, idk.
int loadCount = 0;
bool modOn = true;
int* gameState = FindAobPattern("x83/x3D/x00/x00/x00/x00/x00/x8A/xD9/x74/x0A", "xx?????xxxx");while(modOn) {
loadCount++;
if(loadCount != 1)
{
while(*gameState != 6) Wait(100);
}
while(*gameState != 0) Wait(100);Wait(15500);
while(!GET_ENTITY_HEALTH(PLAYER_PED_ID()) || !IS_PLAYER_CONTROL_ON(PLAYER_ID()) Wait(100);
uint newModel = joaat("mp_m_freemode_01");
REQUEST_MODEL(newModel);
while(!HAS_MODEL_LOADED(newModel)) WAIT(10);SET_PLAYER_MODEL(PLAYER_ID(), newModel);
SET_PED_DEFAULT_COMPONENT_VARIATION(PLAYER_PED_ID());
SET_MODEL_AS_NO_LONGER_NEEDED(newModel);// Any other ped clothing/skin/hair/weapon changes
Wait(0);
}
return; -
RE: "Infinite loading screen" after Rockstar update (1604.1) and ScripthookV update
Try copying in your custom gameconfig from the old patch.
Probably the issue.