Post: [SPRX]Host Binds V1 and (some code)
09-21-2014, 05:32 PM #1
-JM-
Space Ninja
(adsbygoogle = window.adsbygoogle || []).push({}); Here is a small release idk if it been released but this section ain't to good so a little step could help?
whatever enjoy


How to use
You should Use super force host eboot
L2 = Noclip
Dpad_Down = God Mode

You must login or register to view this content.

BTW you can run sprx on CEX but you need syscall 10 and black ops seems to freeze on CEX
here for noobs on DEX
blus30591 eboot
You must login or register to view this content.
juste replace the eboot and put the sprx in HDD0/tmp folder with a file manager

Here simple code for you guys

God Mode
    
void Godmode(int client)
{
if (God[client] == false)
{
Newbyte((0x12ab290 + (client * 760)) + 0x194, 4);
sleep(50);
char byte[4] = { 0xFF, 0xFF, 0xFF, 0xFF };
SetMemory((0x12ab290 + (client * 760)) + 0x194, byte , sizeof(byte));
iPrintln(client, "GodMode:^2ON");
God[client] = true;
sleep(100);
}
else
{
char byte2[4] = { 0x00, 0x00, 0x00, 0x50 };
SetMemory((0x12ab290 + (client * 760)) + 0x194, byte2, sizeof(byte2));
iPrintln(client, "GodMode:^1OFF");
sleep(100);
God[client] = false;
}
}

Noclip
    
void Noclip(int client)
{
if (Noclipmode[client] == false)
{
*(char*)(0x13979BF + (client * 0x2A3Cool Man (aka Tustin)) = 0x01;
iPrintln(client, "Noclip:^2ON");
Noclipmode[client] = true;
sleep(50);
}
else
{
*(char*)(0x13979BF + (client * 0x2A3Cool Man (aka Tustin)) = 0x00;
iPrintln(client, "Noclip:^1OFF");
sleep(50);
Noclipmode[client] = false;
}
}

Iprints
    
void SV_GameSendServerCommand(int Client, char* Command)
{
opd_s SV1 = { 0x3E95F0, TOC };
void(*SVGSSC)(int client, int type, char* cmd) = (void(*)(int, int, char*))&SV1;
SVGSSC(Client, 0, Command);
}
void cBuf_AddText(int Client, char* Command)
{
opd_s SV2 = { 0x3E95F0, TOC };
void(*SVGSSC)(int client, char* cmd) = (void(*)(int, char*))&SV2;
SVGSSC(Client, Command);
}
void iPrintlnBold(int client, char* text)
{
char buf[100];
strcpy(buf, "c \"");
str_cat(buf, text);
str_cat(buf, "\"");
SV_GameSendServerCommand(client,buf);
}

void iPrintln(int client, char* text)
{
char buf[100];
strcpy(buf, "f \"");
str_cat(buf, text);
str_cat(buf, "\"");
SV_GameSendServerCommand(client,buf);
}


Usefull Code
    
void Newbyte(int Address,int nb)
{
for (int i = 0; i <= nb; i++)
{
*(char*)(Address + (i)) = 0x00;
}
}
void SetMemory(int Address,char* bytes,int length)
{
for (int i = 0; i < length; i++)
{
*(char*)(Address + (i)) = bytes[i];
}
}
(adsbygoogle = window.adsbygoogle || []).push({});

The following 3 users say thank you to -JM- for this useful post:

One, Dzak_412, iiiCenTurY
09-21-2014, 06:30 PM #2
razor546PL
Gym leader
Nice! i have no idea how to use it but im sure others will.
09-21-2014, 07:47 PM #3
-JM-
Space Ninja
Originally posted by razor546PL View Post
Nice! i have no idea how to use it but im sure others will.

here made it noob friendly
btw sprx is a file its like rtm with no PC

The following 2 users say thank you to -JM- for this useful post:

razor546PL
09-22-2014, 03:46 AM #4
Teenage Modz
Do a barrel roll!
Originally posted by JM
Here is a small release idk if it been released but this section ain't to good so a little step could help?
whatever enjoy


How to use
You should Use super force host eboot
L2 = Noclip
Dpad_Down = God Mode

You must login or register to view this content.

BTW you can run sprx on CEX but you need syscall 10 and black ops seems to freeze on CEX
here for noobs on DEX
blus30591 eboot
You must login or register to view this content.
juste replace the eboot and put the sprx in HDD0/tmp folder with a file manager

Here simple code for you guys

God Mode
    
void Godmode(int client)
{
if (God[client] == false)
{
Newbyte((0x12ab290 + (client * 760)) + 0x194, 4);
sleep(50);
char byte[4] = { 0xFF, 0xFF, 0xFF, 0xFF };
SetMemory((0x12ab290 + (client * 760)) + 0x194, byte , sizeof(byte));
iPrintln(client, "GodMode:^2ON");
God[client] = true;
sleep(100);
}
else
{
char byte2[4] = { 0x00, 0x00, 0x00, 0x50 };
SetMemory((0x12ab290 + (client * 760)) + 0x194, byte2, sizeof(byte2));
iPrintln(client, "GodMode:^1OFF");
sleep(100);
God[client] = false;
}
}

Noclip
    
void Noclip(int client)
{
if (Noclipmode[client] == false)
{
*(char*)(0x13979BF + (client * 0x2A3Cool Man (aka Tustin)) = 0x01;
iPrintln(client, "Noclip:^2ON");
Noclipmode[client] = true;
sleep(50);
}
else
{
*(char*)(0x13979BF + (client * 0x2A3Cool Man (aka Tustin)) = 0x00;
iPrintln(client, "Noclip:^1OFF");
sleep(50);
Noclipmode[client] = false;
}
}

Iprints
    
void SV_GameSendServerCommand(int Client, char* Command)
{
opd_s SV1 = { 0x3E95F0, TOC };
void(*SVGSSC)(int client, int type, char* cmd) = (void(*)(int, int, char*))&SV1;
SVGSSC(Client, 0, Command);
}
void cBuf_AddText(int Client, char* Command)
{
opd_s SV2 = { 0x3E95F0, TOC };
void(*SVGSSC)(int client, char* cmd) = (void(*)(int, char*))&SV2;
SVGSSC(Client, Command);
}
void iPrintlnBold(int client, char* text)
{
char buf[100];
strcpy(buf, "c \"");
str_cat(buf, text);
str_cat(buf, "\"");
SV_GameSendServerCommand(client,buf);
}

void iPrintln(int client, char* text)
{
char buf[100];
strcpy(buf, "f \"");
str_cat(buf, text);
str_cat(buf, "\"");
SV_GameSendServerCommand(client,buf);
}


Usefull Code
    
void Newbyte(int Address,int nb)
{
for (int i = 0; i <= nb; i++)
{
*(char*)(Address + (i)) = 0x00;
}
}
void SetMemory(int Address,char* bytes,int length)
{
for (int i = 0; i < length; i++)
{
*(char*)(Address + (i)) = bytes[i];
}
}

nice m8 Enzo

The following user thanked Teenage Modz for this useful post:

-JM-
09-22-2014, 04:21 AM #5
Originally posted by JM
here made it noob friendly
btw sprx is a file its like rtm with no PC


With all these new innovations, like sprx modding and gsc injections, I can't wait to see what waits for CoD modding Happy
09-22-2014, 01:30 PM #6
xTc
[MOVE]Hello[/MOVE]
Originally posted by JM
Here is a small release idk if it been released but this section ain't to good so a little step could help?
whatever enjoy


How to use
You should Use super force host eboot
L2 = Noclip
Dpad_Down = God Mode

You must login or register to view this content.

BTW you can run sprx on CEX but you need syscall 10 and black ops seems to freeze on CEX
here for noobs on DEX
blus30591 eboot
You must login or register to view this content.
juste replace the eboot and put the sprx in HDD0/tmp folder with a file manager

Here simple code for you guys

God Mode
    
void Godmode(int client)
{
if (God[client] == false)
{
Newbyte((0x12ab290 + (client * 760)) + 0x194, 4);
sleep(50);
char byte[4] = { 0xFF, 0xFF, 0xFF, 0xFF };
SetMemory((0x12ab290 + (client * 760)) + 0x194, byte , sizeof(byte));
iPrintln(client, "GodMode:^2ON");
God[client] = true;
sleep(100);
}
else
{
char byte2[4] = { 0x00, 0x00, 0x00, 0x50 };
SetMemory((0x12ab290 + (client * 760)) + 0x194, byte2, sizeof(byte2));
iPrintln(client, "GodMode:^1OFF");
sleep(100);
God[client] = false;
}
}

Noclip
    
void Noclip(int client)
{
if (Noclipmode[client] == false)
{
*(char*)(0x13979BF + (client * 0x2A3Cool Man (aka Tustin)) = 0x01;
iPrintln(client, "Noclip:^2ON");
Noclipmode[client] = true;
sleep(50);
}
else
{
*(char*)(0x13979BF + (client * 0x2A3Cool Man (aka Tustin)) = 0x00;
iPrintln(client, "Noclip:^1OFF");
sleep(50);
Noclipmode[client] = false;
}
}

Iprints
    
void SV_GameSendServerCommand(int Client, char* Command)
{
opd_s SV1 = { 0x3E95F0, TOC };
void(*SVGSSC)(int client, int type, char* cmd) = (void(*)(int, int, char*))&SV1;
SVGSSC(Client, 0, Command);
}
void cBuf_AddText(int Client, char* Command)
{
opd_s SV2 = { 0x3E95F0, TOC };
void(*SVGSSC)(int client, char* cmd) = (void(*)(int, char*))&SV2;
SVGSSC(Client, Command);
}
void iPrintlnBold(int client, char* text)
{
char buf[100];
strcpy(buf, "c \"");
str_cat(buf, text);
str_cat(buf, "\"");
SV_GameSendServerCommand(client,buf);
}

void iPrintln(int client, char* text)
{
char buf[100];
strcpy(buf, "f \"");
str_cat(buf, text);
str_cat(buf, "\"");
SV_GameSendServerCommand(client,buf);
}


Usefull Code
    
void Newbyte(int Address,int nb)
{
for (int i = 0; i <= nb; i++)
{
*(char*)(Address + (i)) = 0x00;
}
}
void SetMemory(int Address,char* bytes,int length)
{
for (int i = 0; i < length; i++)
{
*(char*)(Address + (i)) = bytes[i];
}
}


You should post the force host eboot. for some reason SC58 took down his links its hard to find.
09-22-2014, 04:36 PM #7
SC58
Former Staff
Originally posted by xTc
You should post the force host eboot. for some reason SC58 took down his links its hard to find.


You must login or register to view this content.

Originally posted by ZombieSlayerXX View Post
With all these new innovations, like sprx modding and gsc injections, I can't wait to see what waits for CoD modding Happy


sprx is about pointless as you can remove a check in the eboot to allow clients to connect when online to use gsc in real time might aswell do that instead of sprx

The following 2 users say thank you to SC58 for this useful post:

-JM-, xTc
09-22-2014, 09:50 PM #8
-JM-
Space Ninja
Originally posted by SC58 View Post
You must login or register to view this content.



sprx is about pointless as you can remove a check in the eboot to allow clients to connect when online to use gsc in real time might aswell do that instead of sprx


Naw i don't agree SPRX is better in my opinion Because They can't be leeched By 100% noob and They require more knowledge as its C++ people be like "why its undefined" and Sprx you can do stuff without being in a game like name changing using syscalls and i'm planing on injecting my Gsc through my sprx to avoid being hooked to a pc and make it less leeched
09-22-2014, 10:14 PM #9
-JM-
Space Ninja
Originally posted by ZombieSlayerXX View Post
With all these new innovations, like sprx modding and gsc injections, I can't wait to see what waits for CoD modding Happy

These are old sprx is nothing new and gsc where f***ing old
Originally posted by xTc
You should post the force host eboot. for some reason SC58 took down his links its hard to find.

i did put one eboot with force host

sorry for double post the ngu app don't have multi quote
09-22-2014, 10:35 PM #10
Originally posted by JM
These are old sprx is nothing new and gsc where f***ing old

i did put one eboot with force host

sorry for double post the ngu app don't have multi quote

Innovations are new. Never said the methods were. Don't have to be so fucking rude.

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo