Are cinev aplugin CS booti ? [rezolvat!]

Discutii despre tot ce nu se incadreaza in celelalte categorii.

Moderators: Moderatori ajutatori, Moderatori

Post Reply
Na Sa-ti Dau
Membru, skill +2
Membru, skill +2
Posts: 688
Joined: 10 Apr 2013, 23:23
Detinator Steam: Da
Detinator server CS: Da
SteamID: Da
Has thanked: 30 times
Been thanked: 35 times
Contact:

20 Jun 2014, 15:42

Cum au cei de la mixgamers 11 booti care nu ii detecteaza GT si se joaca etc .
Last edited by roberteeel on 20 Jun 2014, 17:15, edited 1 time in total.
Reason: Adăugat ca rezolvat.
# Daca te-am ajutat apasa butonul MULTUMESC!

www.ro-mixers.ro
RoyalServer
User avatar
Chris.
Membru, skill 0
Membru, skill 0
Posts: 79
Joined: 18 Jun 2014, 10:40
Detinator Steam: Da
CS Status: Raspuns inteligent : Da !
Fond eXtream: 0
Location: localhost
Has thanked: 1 time
Been thanked: 3 times
Contact:

20 Jun 2014, 16:16

Din aia care sa stea la spec sau .. ?
User avatar
DeMeN
Fost moderator
Fost moderator
Posts: 1174
Joined: 18 Aug 2013, 19:30
Detinator Steam: Da
CS Status: Inactiv
Detinator server CS: Nu
Reputatie: Membru Club eXtreamCS (1 luna)
Fost Moderator
Location: Suceava, România
Has thanked: 20 times
Been thanked: 135 times

20 Jun 2014, 16:29

Chris. wrote:Din aia care sa stea la spec sau .. ?
booti care nu ii detecteaza GT si se joaca etc .

Invata sa citesti. Aveam eu pluginul, il caut in pc si revin cu edit.
Na Sa-ti Dau
Membru, skill +2
Membru, skill +2
Posts: 688
Joined: 10 Apr 2013, 23:23
Detinator Steam: Da
Detinator server CS: Da
SteamID: Da
Has thanked: 30 times
Been thanked: 35 times
Contact:

20 Jun 2014, 16:33

DeMeN wrote:
Chris. wrote:Din aia care sa stea la spec sau .. ?
booti care nu ii detecteaza GT si se joaca etc .

Invata sa citesti. Aveam eu pluginul, il caut in pc si revin cu edit.
Oke , astept :d
# Daca te-am ajutat apasa butonul MULTUMESC!

www.ro-mixers.ro
User avatar
DeMeN
Fost moderator
Fost moderator
Posts: 1174
Joined: 18 Aug 2013, 19:30
Detinator Steam: Da
CS Status: Inactiv
Detinator server CS: Nu
Reputatie: Membru Club eXtreamCS (1 luna)
Fost Moderator
Location: Suceava, România
Has thanked: 20 times
Been thanked: 135 times

20 Jun 2014, 16:51

1. Descarci ---> https://forums.alliedmods.net/showthread.php?t=211588
| Afiseaza codul
#include <amxmodx>
#include <amxmisc>
#include <fakemeta>

new bool:is_user_fake[33]

new const name_of_bots[][] = {
	"chota chetan",
	">>>} RattLe SnaKe {<<<",
	"Coupe",
	"V![c]kY o.O",
	"Beast",
	"DI$$T3R o_O KILLL3R",
	"Ali $***$----xD",
	"ozn",
	"dzzzz",
	"DOri",
	"TheLoveTerror",
	"WhAT:$ Up :PReTtY GIrL",
	"PrO FrEe PaLeStInEe",
	"@ <<Warrior>> @",
	"BUT FIRST LET ME TAKE A SELFIE",
	"$ cYshwan $",
	"Spr!Te:)"

}

new const name_of_bots2 [ ] [ ] = {
	
	"[tine] #GoDLiKe!",
	"aNaKoNDa",
	"Deadmau",
	"Pwn3d"
}

new const name_of_bots3 [ ] [ ] = {
	
	"I'Musliman",
	"Ha Ha Ha Production"
}

public plugin_init()
{
	register_plugin("boti", "1.0", "unknown + hades update")
	
	set_task ( 10.0, "make_bot" );
	set_task ( 800.0, "make_bot2" );
	set_task ( 1100.0, "make_bot3" );
	
}

public make_bot()
{
	new i;
	for(i = 0; i < sizeof name_of_bots; i++)
	{
		
		new FAKE_PLAYER = engfunc(EngFunc_CreateFakeClient,name_of_bots [ i ])
		
		dllfunc(DLLFunc_ClientConnect,FAKE_PLAYER)
		dllfunc(DLLFunc_ClientPutInServer,FAKE_PLAYER)
		set_pev(FAKE_PLAYER,pev_team,3)
		
		is_user_fake[FAKE_PLAYER] = true
		
		
	}
}

public make_bot2()
{
	new i;
	for(i = 0; i < sizeof name_of_bots2; i++)
	{
		
		new FAKE_PLAYER = engfunc(EngFunc_CreateFakeClient,name_of_bots2 [ i ])
		
		dllfunc(DLLFunc_ClientConnect,FAKE_PLAYER)
		dllfunc(DLLFunc_ClientPutInServer,FAKE_PLAYER)
		set_pev(FAKE_PLAYER,pev_team,3)
		
		is_user_fake[FAKE_PLAYER] = true
		
		
	}
}

public make_bot3()
{
	new i;
	for(i = 0; i < sizeof name_of_bots3; i++)
	{
		
		new FAKE_PLAYER = engfunc(EngFunc_CreateFakeClient,name_of_bots3 [ i ])
		
		dllfunc(DLLFunc_ClientConnect,FAKE_PLAYER)
		dllfunc(DLLFunc_ClientPutInServer,FAKE_PLAYER)
		set_pev(FAKE_PLAYER,pev_team,3)
		
		is_user_fake[FAKE_PLAYER] = true
		
		
	}
}
PS: Pluginul este a lui Hades , nu imi apartine.
Na Sa-ti Dau
Membru, skill +2
Membru, skill +2
Posts: 688
Joined: 10 Apr 2013, 23:23
Detinator Steam: Da
Detinator server CS: Da
SteamID: Da
Has thanked: 30 times
Been thanked: 35 times
Contact:

20 Jun 2014, 17:00

Multumesc , se poate da T/C
# Daca te-am ajutat apasa butonul MULTUMESC!

www.ro-mixers.ro
User avatar
Alone
Membru, skill +2
Membru, skill +2
Posts: 554
Joined: 31 May 2014, 18:26
Detinator Steam: Da
CS Status: **MD**
SteamID: .!.
Fond eXtream: 0
Has thanked: 46 times
Been thanked: 20 times

20 Jun 2014, 17:13

Ai grij ca in mAx 3 zile banat pe gm
Image
Image
User avatar
DeMeN
Fost moderator
Fost moderator
Posts: 1174
Joined: 18 Aug 2013, 19:30
Detinator Steam: Da
CS Status: Inactiv
Detinator server CS: Nu
Reputatie: Membru Club eXtreamCS (1 luna)
Fost Moderator
Location: Suceava, România
Has thanked: 20 times
Been thanked: 135 times

20 Jun 2014, 17:30

Alone wrote:Ai grij ca in mAx 3 zile banat pe gm
Nu te mai baga aiurea , a fost marcat ca rezolvat. Nu are cum sa fie banat in maxim 3 zile daca nu il reporteaza nimeni.
Post Reply

Return to “Discutii generale”

  • Information
  • Who is online

    Users browsing this forum: No registered users and 674 guests