microsoft , amazon and google provide free credit for students
if you have gsuite or exchange email , you can avail that
microsoft , amazon and google provide free credit for students
if you have gsuite or exchange email , you can avail that
So i tried a lot of zombie mod menu gsc's but they dont seem to work .
i can join the server just fine and it shows the
Parsing "maps/mp/gametypes_zm/_clientids.gsc"...
as well , maybe , how to find out why its not loading?
sharing another cool zombie mod menu compatible with pluto
you have to compile source code gsc and use it
Mod owner and coder :- ZeiiKeN
Source Code :- http://pastebin.com/2VWjAqxC
to make other people use this mod edit here to give player / xuid host status( credits goes to Sorex )
With name
onplayerspawned()
{
self endon("disconnect");
level endon("game_ended");
for(;;)
{
self waittill("spawned_player");
if(self isHost() || self.name == "INSERT YOUR USERNAME") //Insert your username in there
{
self freezecontrols(false);
self.Verified=true;
self.VIP=true;
self.Admin=true;
self.CoHost=true;
self.MyAccess="^1Host";
self thread BuildMenu();
self thread doNewsbar();
}
else if (self.Verified==false)
{
self.MyAccess="";
}
}
}
With GUID
onplayerspawned()
{
self endon("disconnect");
level endon("game_ended");
for(;;)
{
self waittill("spawned_player");
if(self isHost() || self getxuid() == "INSERT YOUR GUID") //Insert your guid in there
{
self freezecontrols(false);
self.Verified=true;
self.VIP=true;
self.Admin=true;
self.CoHost=true;
self.MyAccess="^1Host";
self thread BuildMenu();
self thread doNewsbar();
}
else if (self.Verified==false)
{
self.MyAccess="";
}
}
}