Начинающий
-
Автор темы
- #1
I WILL NOT PROVIDE ANY HELP REGARDING THIS, THIS IS NOT MY CHEAT NOR MY LEAK, DO NOT ASK ME FOR ANYTHING REGARDING THIS
Next time be smarter and don't make fun of people in hard situations, you will regret being an asshole.
Auto align is the same as every other source and so is everything else, it's just tacohack.
Credits: Moi (ex-odio dev), he asked for credits on this
No VT, source only (I deleted the directx binaries from the source because the devs are too stupid to figure out VC++ directories and made a folder with all static libraries of directx in there, that's, from my knowledge, the only problem that you might face when building the cheat)
The original source with all directx libraries is 5.17MB, with them removed it is around 2MB, great job
CHEAT
For any redaction problems or rules broken please write me a direct message, I'll answer ASAP.
Please enjoy this post and remember, don't make fun of people going through great struggles in life like it's nothing, you have no idea what's going through someone's mind at the moment you're making fun of them.
Might post some other stuff later, we'll see!
EXTRA:
Next time be smarter and don't make fun of people in hard situations, you will regret being an asshole.
Auto align is the same as every other source and so is everything else, it's just tacohack.
Credits: Moi (ex-odio dev), he asked for credits on this
No VT, source only (I deleted the directx binaries from the source because the devs are too stupid to figure out VC++ directories and made a folder with all static libraries of directx in there, that's, from my knowledge, the only problem that you might face when building the cheat)
The original source with all directx libraries is 5.17MB, with them removed it is around 2MB, great job
CHEAT
Пожалуйста, авторизуйтесь для просмотра ссылки.
Nametag plugin source:
#include <sourcemod>
#pragma semicolon 1
#define NewPrefix " \x08「\x0BNeptuneKZ\x08」 \x01| "
public Plugin myinfo= {
name = "[SM] Prefix Changer",
author="crash",
description = "",
version="",
url = "snipped_discord_url"
};
public void OnPluginStart() {
if(GetUserMessageType() == UM_Protobuf) {
HookUserMessage(GetUserMessageId("TextMsg"), Hook_TextMsg, true);
}
}
public Action:Hook_TextMsg(UserMsg:msg_id, Handle:pb, players[], playersNum, bool:reliable, bool:init) {
if(!reliable || PbReadInt(pb, "msg_dst") != 3) {
return Plugin_Continue;
}
new String:Message[256];
PbReadString(pb, "params", Message, sizeof(Message), 0);
if(StrContains(Message, "[SM] ") != -1) {
new Handle:pack;
CreateDataTimer(0.0, Remove_Prefix, pack, TIMER_FLAG_NO_MAPCHANGE);
WritePackCell(pack, playersNum);
for(new i = 0;i < playersNum;i++) {
WritePackCell(pack, players[i]);
}
WritePackCell(pack, strlen(Message));
WritePackString(pack, Message);
resetpack(pack);
return Plugin_Handled;
}
return Plugin_Continue;
}
public Action:Remove_Prefix(Handle:timer, Handle:pack) {
new playersNum = ReadPackCell(pack);
new players[playersNum];
new player, players_count;
for(new i = 0;i < playersNum;i++) {
player = ReadPackCell(pack);
if(IsClientInGame(player)) {
players[players_count++] = player;
}
}
playersNum = players_count;
if(playersNum < 1) {
return Plugin_Handled;
}
new Handle:pb = StartMessage("TextMsg", players, playersNum, USERMSG_BLOCKHOOKS);
PbSetInt(pb, "msg_dst", 3);
new buffer_size = ReadPackCell(pack) + 35;
new String:Message[buffer_size];
ReadPackString(pack, Message, buffer_size);
ReplaceStringEx(Message, buffer_size, "[SM] ", NewPrefix);
PbAddString(pb, "params", Message);
PbAddString(pb, "params", NULL_STRING);
PbAddString(pb, "params", NULL_STRING);
PbAddString(pb, "params", NULL_STRING);
PbAddString(pb, "params", NULL_STRING);
EndMessage();
return Plugin_Continue;
}
Please enjoy this post and remember, don't make fun of people going through great struggles in life like it's nothing, you have no idea what's going through someone's mind at the moment you're making fun of them.
Might post some other stuff later, we'll see!
EXTRA:
Пожалуйста, авторизуйтесь для просмотра ссылки.
(Renamed the channel to something else and made their bio my friends cheat dll and his scaleform ui, both of whose were unfinished and heavily outdated since the date of the leak, this was a reuploads profile before)
Последнее редактирование: