February 22, 201511 yr comment_185539 Salut. When i start CS:S and go on "create Server" i start to play with botsi would like to give the bots other names, cause they have stupid english names.Any Idea someone?Please don't ask why i play with bots Report
February 22, 201511 yr Author comment_185542 Why are you playing with bots PLEASE DON'T ASK WHY I PLAY WITH BOTS. Report
February 22, 201511 yr comment_185550 PLEASE DON'T ASK WHY I PLAY WITH BOTS. I want to know why hahahaha Report
February 23, 201511 yr Author comment_185561 nah i want to try something, you guys would like! so Report
February 23, 201511 yr comment_185565 TOBI THE LOWTOBI THE LOWTOBI THE LOWTOBI THE LOWTOBI THE LOWTOBI THE LOWTOBI THE LOWTOBI THE LOWTOBI THE LOW Report
February 23, 201511 yr Author comment_185566 voteban duble! NO ONE ANY IDEA OR WHAT?On Google i only find results for public servers, i need for my private. Report
February 23, 201511 yr Author comment_185568 well okay then i will uninstall this game was the worst game i've ever played, so whatever! Report
February 24, 201511 yr comment_185571 Can't, unless you have sourcemod on your local server with a plugin to change the names Report
March 19, 201511 yr comment_186136 You were created a server in local, install sourcemod as say Kitsune and put this plugin : #include <sourcemod> #include <sdktools> #define PL_VERSION "1.0" new maxplayers; new Handle:MaxFakeClientAllowed; new Handle:FakeClientsDelay; public Plugin:myinfo = { name = "FakeClients", author = "LouLoubizou", description = "Put fake clients in server", version = PL_VERSION, url = "http://sourcemod.net/" }; static String:FakeNames[32][] = {"System32", "TommyBoy", "RogerDodger", "BulletsLikeMe", "b!g", "ScoutItOut", "PopularAttraction", "Squ33z3", "quality", "bailoutnow", "ph34r", "1337sp34k", "soopaMAN", "www.LDuke.com", "omar", "achmed", "benthas", "hmmmm", "LOLLOL", "i.ride.the.short.bus", "roastAbowl", "winnt.dll", "Im_a_big_fake", "freeman", "alyx", "barney", "g-man", "xcellent", "obtuse", "Moridin", "Rand", "YoungBull"}; public OnPluginStart(){ CreateConVar("sm_fakeclients_version", PL_VERSION, "Version of FakeClients plugin", FCVAR_PLUGIN|FCVAR_SPONLY|FCVAR_REPLICATED|FCVAR_NOTIFY); MaxFakeClientAllowed = CreateConVar("sm_fakeclients_players","6","Number of players to simulate", FCVAR_PLUGIN|FCVAR_SPONLY|FCVAR_REPLICATED|FCVAR_NOTIFY, true, 0.0, true, 64.0); FakeClientsDelay = CreateConVar("sm_fakeclients_delay","0.1","Delay after map change before fake clients join (seconds)", FCVAR_PLUGIN|FCVAR_SPONLY|FCVAR_REPLICATED|FCVAR_NOTIFY, true, 0.1, true, 10.0); } public OnMapStart(){ maxplayers = 0; maxplayers = GetMaxClients(); new i; new Float:Delay = GetConVarFloat(FakeClientsDelay); new Float:NewDelay = Delay; for(i=1; i<=GetConVarInt(MaxFakeClientAllowed); i++){ CreateTimer(NewDelay, OnTimedCreateFakeClient, 0); NewDelay = NewDelay+Delay; } } public OnClientPutInServer(client){ if (!IsFakeClient(client)){ new i; for(i=1; i<=maxplayers; i++){ if (IsClientConnected(i)){ if(IsFakeClient(i)){ KickClient(i, "Slot reserved", i); break; } } } } } public OnClientDisconnect(client){ CreateTimer(0.1, OnTimedCreateFakeClient, client); } public Action:OnTimedKick(Handle:timer, any:client){ KickClient(client, "Slot reserved", client); return Plugin_Handled; } public Action:OnTimedCreateFakeClient(Handle:timer, any:client){ new clientcount = GetClientCount(true); if (clientcount == maxplayers-1) return Plugin_Handled; new i; new NumberOfFakeClients = 0; for (i=1; i<=maxplayers; i++){ if (IsClientConnected(i)){ if(IsFakeClient(i)) NumberOfFakeClients++; } } if (NumberOfFakeClients == GetConVarInt(MaxFakeClientAllowed)) return Plugin_Handled; if (clientcount >= GetConVarInt(MaxFakeClientAllowed)) return Plugin_Handled; new RandomName = GetRandomInt(0, 31); CreateFakeClient(FakeNames[RandomName]); return Plugin_Handled; } Report
March 19, 201511 yr comment_186137 Sauf que Tobi ne parle pas d'un serveur crée mais d'une partie locale lancée à partir de son propre ordinateur, ce serait trop simple sinon Report
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.