Post: Requset: Kick or Ban user from room or game
08-16-2018, 11:00 AM #1
(adsbygoogle = window.adsbygoogle || []).push({}); Hi,

I love playing COD BO2 on Xbox 360 and I love playing it fair and square but hackers and cheaters ruining this game :(

So can anyone make step by step instruction to use GSC mods and scripts to kick any user who his name in the list, i.e black list

NOTE: I'm using jtag/rgh xbox 360 and play system link ( LiNK )

Thank you in advance
Last edited by alnameralnamer ; 08-16-2018 at 11:07 AM. Reason: specify console
08-16-2018, 11:18 AM #2
Like
Rocket League <3
Originally posted by alnameralnamer View Post
Hi,

I love playing COD BO2 on Xbox 360 and I love playing it fair and square but hackers and cheaters ruining this game :(

So can anyone make step by step instruction to use GSC mods and scripts to kick any user who his name in the list, i.e black list

NOTE: I'm using jtag/rgh xbox 360 and play system link ( LiNK )

Thank you in advance


I dont mod on xbox but some gsc menus will have a ban list/black list but it will usually reset once you get off the game. But if you're looking for a permanent ban/black list then i cant help there.
08-16-2018, 08:00 PM #3
anthonything
Space Ninja
Originally posted by alnameralnamer View Post
Hi,

I love playing COD BO2 on Xbox 360 and I love playing it fair and square but hackers and cheaters ruining this game :(

So can anyone make step by step instruction to use GSC mods and scripts to kick any user who his name in the list, i.e black list

NOTE: I'm using jtag/rgh xbox 360 and play system link ( LiNK )

Thank you in advance


If you are able to develop basic gsc you can try something like this:
    
init()
{
level.namebans = [];
level.namebans[0] = "example_name";
level.namebans[1] = "example_name_2";
level.xuidbans = [];
level.xiudbans[0] = "examplexuid10101010";
level.xiudbans[1] = "examplexuid20202020";
level thread banmonitor();
}

banmonitor()
{
while(1)
{
level waittill("connected", player);
player thread bancheck();
}
}

bancheck()
{
myname = self getname();
myxuid = self getxuid();
foreach(name in level.namebans)
{
if(myname == name)
kick(self GetEntityNumber());
}
foreach(xuid in level.xuidbans)
{
if(myxuid == xuid)
kick(self GetEntityNumber());
}
}

GetName()
{
if(!isdefined(self) || !isdefined(self.name))
return "";
nT=getSubStr(self.name,0,self.name.size);
for(i=0;i<nT.size;i++)
{
if(nT[i]=="]")
break;
}
if(nT.size!=i)
nT=getSubStr(nT,i+1,nT.size);
return nT;
}
08-17-2018, 01:11 PM #4
Thank you all for reply


I think I have to read about gsc as I'm new to this but I hope that I can find where to start Upside Down Happy

Copyright © 2024, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo