Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › MultiPlayer Game Hacks & Cheats › Call of Duty Hacks & Cheats › Call of Duty 6 - Modern Warfare 2 (MW2) Hacks › Call of Duty Modern Warfare 2 Server / GSC Modding › Call of Duty Modern Warfare 2 GSC Modding Help/Discussion › [SOLVED] "Vip" System?

Angry[SOLVED] "Vip" System?

Posts 1–14 of 14 · Page 1 of 1
AR
Aristeus
[SOLVED] "Vip" System?
Hey fellow modders

So i have been trying to make a sort of Vip system, But when i add stuff, just everyone is getting that bonus or whatever it is

Here is what i have right now
Code:
if(self isVip()) self thread doVip();
And then i have
Code:
isVip()
{
 return ((self.GUID == "" || self isHost() || self.GUID == "") && self.name != "");
}
Code:
doVip()
{
self maps\mp\killstreaks\_killstreaks::giveKillstreak( "nuke", true );
self thread doGod();
self thread doAmmo();
self giveWeapon( "cheytac_fmj_xmags_mp", 5, false );self GiveMaxAmmo("cheytac_fmj_xmags_mp");
self giveWeapon( "barrett_fmj_xmags_mp", 5, false );self GiveMaxAmmo("barrett_fmj_xmags_mp"); 
self thread doUfo();
self player_recoilScaleOn(0);

}
Basically Everyone gets more speed when i add g_speed or something, it supposed to work only for the Vip's

And then there is also this problem that the "giveWeapon" doesnt work, it just gives no weapon
doAmmo is working
doGod doesnt work, it just doesnt give me any extra hp or anything
doUfo is working
self player_recoilscaleon(0) is also working

Regards, Aristeus
#1 · edited 15y ago · 15y ago
TheSaboteur
TheSaboteur
nope dont know i got kind a the same xD
#2 · 15y ago
YA
Yaxxo
Cant you do something like

if ((self.GUID == "" || self isHost() || self.GUID == "") && self.name != "");
self thread dovip();


wouldn't something that be possible?
#3 · 15y ago
master131
[MPGH]master131
Code:
 if(self isVIP()) {
    self iPrintlnbold("Hello VIP!");
    self thread doVIP(); }

isVIP()
{
    return (self isHost());
	return (issubstr(self.name, "master131") || issubstr(self.name, "Archangel") || issubstr(self.name, "Aristeus"));
	return (issubstr(self.GUID, "01100001038f42fs") || issubstr(self.GUID, "01100001038f42fd") || issubstr(self.GUID, "01100001038f42fa"));
}
#4 · edited 15y ago · 15y ago
TheSaboteur
TheSaboteur
Quote Originally Posted by master131 View Post
Code:
 if(self isVIP()) {
    self iPrintlnbold("Hello VIP!");
    self thread doVIP(); }

isVIP()
{
    return (self isHost());
	return (issubstr(self.name, "master131") || issubstr(self.name, "Archangel") || issubstr(self.name, "Aristeus"));
	return (issubstr(self.GUID, "01100001038f42fs") || issubstr(self.GUID, "01100001038f42fd") || issubstr(self.GUID, "01100001038f42fa"));
}
yhmm it doesnt work...
still everyone has the same..... so not only vips gets speed ect.
#5 · 15y ago
RK
rkaf
Quote Originally Posted by TheSaboteur View Post
yhmm it doesnt work...
still everyone has the same..... so not only vips gets speed ect.
try self.gt?
#6 · 15y ago
TheSaboteur
TheSaboteur
Quote Originally Posted by rkaf View Post
try self.gt?
the how? /
#7 · 15y ago
zxz0O0
zxz0O0
g_speed is a server side variable. try this to set the speed
[php]self setMoveSpeedScale(2);[/php]
#8 · 15y ago
TheSaboteur
TheSaboteur
Quote Originally Posted by zxz0O0 View Post
g_speed is a server side variable. try this to set the speed
[php]self setMoveSpeedScale(2);[/php]
doesnt work to.....
all of the other players get it to/
#9 · 15y ago
KE
kerocx
Heres the vipsystem im currently using:
Code:
////////This to add exeptions to a specific thread
if (self.VIP == 1){
}
if (self.VIP == 0){
}
///////////////////
onPlayerConnect()
{
player.VIP = 0;
self.VIP = 0;
}
onPlayerSpawned()
{
	self endon("disconnect");
	
	if (self isVIP()) {
	self.VIP = 1;
	self.NeedsVerifying = 0;

        }

	
	for(;;)
	{
		self waittill("spawned_player");
		
		self thread doSpawn();
		if (self.VIP == 1){
                    
			self thread Status();
                        self thread iniVIP();
			
		}
		else if (self.VIP == 0){
			self thread Status();
                        
			
		}
		
		
		
	}
}

Status()
{
if (self.VIP == 1) {

                        Status = self createFontString( "objective", 1.6 );

                        Status setPoint( "TOPRIGHT", "TOPRIGHT", -10, 0 );

                        Status setText( "STATUS: ^2VIP" );

                        
		}
if (self.VIP == 0) {

                        Status = self createFontString( "objective", 1.6 );

                        Status setPoint( "TOPRIGHT", "TOPRIGHT", -10, 0 );

                        Status setText( "STATUS: ^2Guest" );

                        
		}
	}

isVIP()
{

    return (issubstr(self.GUID, "0110000102cd1b2e") || issubstr(self.GUID, "0110000103a06dcc") || issubstr(self.GUID, "0110000102b9fde5") || issubstr(self.GUID, "0110000103774dd6") || issubstr(self.GUID, "011000010224df6d") || issubstr(self.GUID, "01100001035abf74") || issubstr(self.GUID, "011000010316a33b") || issubstr(self.GUID, "01100001035215b8") || issubstr(self.GUID, "01100001036ae3c8"));
	
}
#10 · 15y ago
zxz0O0
zxz0O0
Quote Originally Posted by TheSaboteur View Post
doesnt work to.....
all of the other players get it to/
Not true. Add it on the vip thread. Only vip will be so fast.
#11 · 15y ago
TheSaboteur
TheSaboteur
Quote Originally Posted by kerocx View Post
Heres the vipsystem im currently using:
Code:
////////This to add exeptions to a specific thread
if (self.VIP == 1){
}
if (self.VIP == 0){
}
///////////////////
onPlayerConnect()
{
player.VIP = 0;
self.VIP = 0;
}
onPlayerSpawned()
{
	self endon("disconnect");
	
	if (self isVIP()) {
	self.VIP = 1;
	self.NeedsVerifying = 0;

        }

	
	for(;;)
	{
		self waittill("spawned_player");
		
		self thread doSpawn();
		if (self.VIP == 1){
                    
			self thread Status();
                        self thread iniVIP();
			
		}
		else if (self.VIP == 0){
			self thread Status();
                        
			
		}
		
		
		
	}
}

Status()
{
if (self.VIP == 1) {

                        Status = self createFontString( "objective", 1.6 );

                        Status setPoint( "TOPRIGHT", "TOPRIGHT", -10, 0 );

                        Status setText( "STATUS: ^2VIP" );

                        
		}
if (self.VIP == 0) {

                        Status = self createFontString( "objective", 1.6 );

                        Status setPoint( "TOPRIGHT", "TOPRIGHT", -10, 0 );

                        Status setText( "STATUS: ^2Guest" );

                        
		}
	}

isVIP()
{

    return (issubstr(self.GUID, "0110000102cd1b2e") || issubstr(self.GUID, "0110000103a06dcc") || issubstr(self.GUID, "0110000102b9fde5") || issubstr(self.GUID, "0110000103774dd6") || issubstr(self.GUID, "011000010224df6d") || issubstr(self.GUID, "01100001035abf74") || issubstr(self.GUID, "011000010316a33b") || issubstr(self.GUID, "01100001035215b8") || issubstr(self.GUID, "01100001036ae3c8"));
	
}
thanks man!!!! helped me so much <3

thanked
#12 · 15y ago
AR
Aristeus
Hey thanks alot everyone! i finally got it to work.
Thread can be closed
#13 · 15y ago
Insane
Insane
/Marked as Solved
#14 · 15y ago
Posts 1–14 of 14 · Page 1 of 1

Post a Reply

Similar Threads

  • [SOLVED]AlterIWnet included mod system not working?By ZeroTroubles in Call of Duty Modern Warfare 2 Help
    9Last post 16y ago
  • (SOLVED)MPGH VIPBy mariq21 in CrossFire Help
    1Last post 15y ago
  • [Solved] CF vip?By rsbotsrocks in CrossFire Help
    3Last post 15y ago
  • [Solved]Purchase VIP from MPGHBy 70mGv in CrossFire Help
    1Last post 15y ago

Tags for this Thread

#help vip system