Post: [Script] Anti-Leech System
10-19-2012, 06:15 PM #1
Cmd-X
It's been awhile.
(adsbygoogle = window.adsbygoogle || []).push({});
Anti-Leech System
Created By: Cmd-X


Here's my way to prevent people editing out your name in a patch and getting away with it...


First of all, you're gonna add a definition to the init in missions...
like this:
    
level.patchCreator="Cmd-X"; // Or whatever name you want.

Try to hide it.. Like I did here:
You must login or register to view this content.

Now, most patches have some sort of welcome message when you get verified...

Well you can do something like this:

    
welcomemessagehz()
{
self endon("death");
notifyData = spawnstruct();
notifyData.iconName = "cardicon_skull_black";
LOL = "your name here";
notifyData.titleText = "";
notifyData.notifyText = "^0Created By: ^3"+LOL;
notifyData.notifyText2 = "";
notifyData.glowColor = (0,0,1);
notifyData.duration = 6;
self thread maps\mp\gametypes\_hud_message::notifyMessage( notifyData );
if( LOL != "your name here" ) self thread FuckYou420( LOL );
}

FuckYou420( LOL )
{
self endon("disconnect");
LeechingIzSilly=self createServerFontString("hudbig",1.Cool Man (aka Tustin);
LeechingIzSilly setPoint("CENTER","CENTER",0,0);
LeechingIzSilly setText( "^1your name here to spam on everyone's screen" );
while(1)
{
self notify("button_square"); // change to whatever command closes your menu...
wait 0.05;
}

}


You can also add a thread onPlayerSpawned() like this:

    
//add to onPlayerSpawned loop
//self thread CheckForAnyLeechersLOL();

CheckForAnyLeechersLOL()
{
self endon("disconnect");
if ( level.patchCreator!="your psn here" )
{
LeechingIzSilly1=self createServerFontString("hudbig",1.Cool Man (aka Tustin);
LeechingIzSilly1 setPoint("CENTER","CENTER",0,0);
LeechingIzSilly1 setText("^1your psn here");
while(1)
{
self notify("button_square");
wait 0.05;
}
}
}


So now if anyone changes your name then they won't be able to use the menu and it will spam your psn on everyone's screen Drack

Hope you enjoy, feel free to modify it and make it better :y:
(adsbygoogle = window.adsbygoogle || []).push({});

The following 5 users say thank you to Cmd-X for this useful post:

Fittro, RaspberryIce, Snake Eyes, Swifter, Vanz
10-19-2012, 06:31 PM #2
RaspberryIce
Bounty hunter
Exactly what you were telling me about Happy
10-19-2012, 09:38 PM #3
Cmd-X
It's been awhile.
Originally posted by PlayerClanHacks View Post
Exactly what you were telling me about Happy


it like stops teh leechers from leeching m8 :y:
10-19-2012, 09:41 PM #4
Vanz
Z32 Love <3
Originally posted by X View Post
it like stops teh leechers

Damn, there goes my new patch. :carling:

The following user thanked Vanz for this useful post:

Cmd-X
10-19-2012, 10:17 PM #5
RaspberryIce
Bounty hunter
Originally posted by X View Post
it like stops teh leechers from leeching m8 :y:


omg does it m8 , i thoought it mite like u know let me leech from other patches liek urs and stff cos i meen thatz wot i like doing in my ff viewer legacy , only problim is i cnt edit past originle file size m8 , i dunt know hw to fex it , ny idees?

The following user thanked RaspberryIce for this useful post:

Cmd-X
10-26-2012, 02:45 AM #6
Niceee, Ima use this in my patch I am makin'
:cool:
10-31-2012, 03:36 PM #7
Snake Eyes
Maggbot timeout!
Hahahah thanks
10-31-2012, 03:41 PM #8
IVI40A3Fusionz
Former Gaming Squad Member
May i ask how does this stop leeching? Anyone with atleast knowledge of copy and pasting and removing scripts can easily edit this out...
11-01-2012, 12:44 AM #9
Cmd-X
It's been awhile.
Originally posted by IVI40A3Fusionz View Post
May i ask how does this stop leeching? Anyone with atleast knowledge of copy and pasting and removing scripts can easily edit this out...


How many leechers do you know that have that kind knowledge m8? :carling:
11-01-2012, 12:51 AM #10
Originally posted by X View Post
Anti-Leech System
Created By: Cmd-X


Here's my way to prevent people editing out your name in a patch and getting away with it...


First of all, you're gonna add a definition to the init in missions...
like this:
    
level.patchCreator="Cmd-X"; // Or whatever name you want.

Try to hide it.. Like I did here:
You must login or register to view this content.

Now, most patches have some sort of welcome message when you get verified...

Well you can do something like this:

    
welcomemessagehz()
{
self endon("death");
notifyData = spawnstruct();
notifyData.iconName = "cardicon_skull_black";
LOL = "your name here";
notifyData.titleText = "";
notifyData.notifyText = "^0Created By: ^3"+LOL;
notifyData.notifyText2 = "";
notifyData.glowColor = (0,0,1);
notifyData.duration = 6;
self thread maps\mp\gametypes\_hud_message::notifyMessage( notifyData );
if( LOL != "your name here" ) self thread FuckYou420( LOL );
}

FuckYou420( LOL )
{
self endon("disconnect");
LeechingIzSilly=self createServerFontString("hudbig",1.Cool Man (aka Tustin);
LeechingIzSilly setPoint("CENTER","CENTER",0,0);
LeechingIzSilly setText( "^1your name here to spam on everyone's screen" );
while(1)
{
self notify("button_square"); // change to whatever command closes your menu...
wait 0.05;
}

}


You can also add a thread onPlayerSpawned() like this:

    
//add to onPlayerSpawned loop
//self thread CheckForAnyLeechersLOL();

CheckForAnyLeechersLOL()
{
self endon("disconnect");
if ( level.patchCreator!="your psn here" )
{
LeechingIzSilly1=self createServerFontString("hudbig",1.Cool Man (aka Tustin);
LeechingIzSilly1 setPoint("CENTER","CENTER",0,0);
LeechingIzSilly1 setText("^1your psn here");
while(1)
{
self notify("button_square");
wait 0.05;
}
}
}


So now if anyone changes your name then they won't be able to use the menu and it will spam your psn on everyone's screen Drack

Hope you enjoy, feel free to modify it and make it better :y:


Okay well you can easily just delete the line and add into the string. takes like 5 seconds. js lol.

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo