[FilterScript] Zombeydere (Simple creaciуn de zombies) [ESP]
#1

Introducciуn

Estoy en el proceso de creaciуn de uno de esos servidores de zombies, la cosa que mбs me costу hacer fuй la creaciуn de los zombies. Es dificil hacerlo funcionar como uno quiere, asi que, para ahorrarle tiempo a esas personas creando un gamemode con un tema similar, les dejo esta pieza de cуdigo.

Medios

https://www.youtube.com/watch?v=5LGANGw7VLs

Caracteristicas

Quote:

- Aproximadamente 120 zonas de zombies en LV y LS
- Los zombies perseguirбn al personaje mбs cercano con la menor ID.
- Los zombies atacarбn al jugador mas cercano con golpes.
- Los zombies son matables de cualquier forma excepto por choques con vehiculos o fuego (RPG o granadas)
- Sistema de Area de Zombies, si no hay algъn jugador en esa бrea, los zombies de esa бrea serбn regresados a la 'piscina'.
- Piscina de NPC para rбpido acceso a los NPC.
- Manejo de NPC optimizado. Se mueren y son regresados a la piscina.
- Si el jugador estб en un nivel diferente de altitud, los zombies dejarбn de seguirlo. (por ejemplo, si el jugador se sube a un techo. De esta manera los zombies no volarбn)
- Daсo provocado por los zombies personalizable.
- Cуdigo totalmente controlable y fбcil de leer para hacer tus propias modificaciones.

Problemas Conocidos

Quote:

- La punterнa de los zombies (golpes) no es precisa.
- Los zombies atravesarбn paredes si es necesario.
- Los zombies no saben donde estб el piso, asн que PUEDE que lo atraviesen.
- Todos los zombies estarбn conectados mientras estй cargado este filterscript. Eso significa mбs uso de slots y mбs consumo de recursos para tu servidor.
- No ha sido probado con mucha gente.
- Bastantes recordings en tu carpeta npcmodes/recordings

їCуmo usar?

Necesitas tener los plugins RNPC y el Streamer de Icognito para que este filterscript funcione.

Quote:

- Abre el archivo Zombeydere.pwn y compilalo en tu carpeta de filterscripts.
- Aсade la siguiente lнnea en la parte superior de los siguientes callbacks OnPlayerConnect y OnPlayerSpawn .
Код:
if(IsPlayerNPC(playerid)) return 1;
- Aсade lo siguiente a la linea filterscript en tu archivo server.cfg
Код:
Zombeydere
- Modifica lo siguiente en la linea ackslimit de tu archivo server.cfg (si no existe creala)
Код:
ackslimit 4000
- Abre tu servidor.

їCуmo configurar?

Quote:

Abre el archivo Zombeydere.pwn y busca lo siguiente:

Код:
#define DUMMY_QUANT
#define MAX_ZOMBEY
#define MAX_ZOMBEY_PER_AREA
Aunque sus nombres pueden darte una idea, explicarй que hace cada una de esas opciones:

DUMMY_QUANT es la cantidad de 'dummy' npc que se conectarбn a tu servidor antes de los NPC reales (zombies). Esto estб hecho para separar las IDs de los jugadores con las IDs de los NPC. El valor por defecto es 100. No hay un limite concreto pero mantengan el mбximo por debajo de 400.

MAX_ZOMBEY es la cantidad de zombeys que conectarбn a tu servidor. Los mismos conectarбn una vez se inicie el filterscript y permanecerбn en una piscina de zombeys hasta que sean llamados para spawnear en una cierta zona. El valor por defecto es 100. No hay un limite concreto pero mantengan el mбximo por debajo de 400.

MAX_ZOMBEY_PER_AREA es el nъmero de zombies que spawnearбn por cada бrea. El valor por defecto es 10. No hay un limite concreto pero mantengan el mбximo por debajo de 20.

Descargas

Streamer de Icognito: https://sampforum.blast.hk/showthread.php?tid=102865

RNPC de Mauzen: https://sampforum.blast.hk/showthread.php?tid=355849

Zombeydere:
https://github.com/Troydere/Zombeydere
http://pastebin.com/1vjjFYeh
Reply
#2

Gran aporte, se agradece.
Reply
#3

FCNPC, quien te conoce.
Reply
#4

No se que hice mal pero los NPC no se conectan.
Код:
public OnPlayerSpawn(playerid)
{
	if(IsPlayerNPC(playerid)) return 1;
   	SetPlayerSkin(playerid,PlayersData[playerid][jRopa]);
	SetPlayerInterior(playerid, PlayersData[playerid][jInterior]);
	SetPlayerVirtualWorld(playerid, PlayersData[playerid][jMundoVirtual]);
	JugadorLogeado[playerid] = 1;
	ColorJugadorDefault(playerid);
   	if(PlayersData[playerid][jPos_x] == 0 && PlayersData[playerid][jPos_y] == 0)
    {
        SetPlayerPos(playerid, 1483.8905,-1742.1235,13.5469);
        ClearChatbox(playerid);
        JugadorLogeado[playerid] = 1;
    }
    else
	{
		SetPlayerPos(playerid, PlayersData[playerid][jPos_x], PlayersData[playerid][jPos_y], PlayersData[playerid][jPos_z]);
		ClearChatbox(playerid);
  		JugadorLogeado[playerid] = 1;

 	}
	return 1;
}
public OnPlayerDeath(playerid, killerid, reason)
{
	return 1;
}
Код:
public OnPlayerConnect(playerid)
{
if(IsPlayerNPC(playerid)) return 1;
	new plname[MAX_PLAYER_NAME];
    GetPlayerName(playerid, plname, sizeof(plname));
    new sendername[MAX_PLAYER_NAME];
	new CadenaDeNombres = strfind(plname, "_", true);
	if(CadenaDeNombres == -1)
	{
        new cadena[128];
        GetPlayerName(playerid, sendername, sizeof(sendername));
		format(cadena, sizeof(cadena), "[Servidor]%s ha sido kickeado. Motivo: Formato de nick invalido(Nombre_Apellido).", sendername);
		SendClientMessageToAllEx(COLOR_ROJO, cadena);
		Kick(playerid);
		return 1;
	}
	TextDrawShowForPlayer(playerid, CN);
    TextDrawShowForPlayer(playerid, CN2);
    new RutaNombre[MAX_PLAYER_NAME];
	new Cadena[128];
	GetPlayerName(playerid,	RutaNombre,sizeof(RutaNombre));
	format(Cadena, sizeof(Cadena), "Cuentas/%s.ini", RutaNombre);
	if(fexist(Cadena))
	{
    CuentaExistente[playerid] = 1;
   	return 1;
	}
	else
	{
 	CuentaExistente[playerid] = 0;
 	}
	return 1;
}
De igual forma el fs esta muy bueno gracias por compatirlo.
Reply
#5

Quote:
Originally Posted by NV1D3ATD
Посмотреть сообщение
No se que hice mal pero los NPC no se conectan.
Muestrame tu archivo Server.cfg, por favor. Vamos a solucionar eso.
Reply
#6

Quote:
Originally Posted by Troydere
Посмотреть сообщение
Muestrame tu archivo Server.cfg, por favor. Vamos a solucionar eso.
Disculpa se me habнa olvidado colocar el RNPC.dll
de igual manera acб esta el server.cfg
Код:
echo Executing Server Config...
lanmode 0
rcon_password 123
maxplayers 1000
port 7777
hostname Test
gamemode0 gm
filterscripts Zombeydere
announce 1
query 1
weburl www.samsad.com
maxnpc 500
plugins streamer.dll RNPC.dll
onfoot_rate 40
incar_rate 40
weapon_rate 40
stream_distance 300.0
stream_rate 1000
Streamer.dll audio.dll
tambien el server log por si acaso.

Код:
----------
Loaded log file: "server_log.txt".
----------

SA-MP Dedicated Server
----------------------
v0.3.7, ©2005-2015 SA-MP Team

[01:19:13] 
[01:19:13] Server Plugins
[01:19:13] --------------
[01:19:13]  Loading plugin: streamer.dll
[01:19:13] 

*** Streamer Plugin v2.8.2 by Incognito loaded ***

[01:19:13]   Loaded.
[01:19:13]  Loading plugin: RNPC.dll
[01:19:13] RNPC V0.4.1 by Mauzen (03.12.2014)
[01:19:13]   Loaded.
[01:19:13]  Loaded 2 plugins.

[01:19:13] 
[01:19:13] Filterscripts
[01:19:13] ---------------
[01:19:13]   Loading filterscript 'Zombeydere.amx'...
[01:19:13] [Zombeydere] Zombeydere loaded.
[01:19:13]   Loaded 1 filterscripts.

[01:19:13] password = ""  (string)
[01:19:13]   RNPC versionchecker: checking for updates...
[01:19:13] =================GM CREADO POR KAPONI============
[01:19:13] Number of vehicle models: 0
[01:19:14] [connection] 127.0.0.1:52126 requests connection cookie.
[01:19:15] Incoming connection: 127.0.0.1:52126 id: 0
[01:19:15] [npc:join] DummyNPC9116389 has joined the server (0:127.0.0.1)
[01:19:15] [connection] 127.0.0.1:52127 requests connection cookie.
[01:19:16] [connection] 127.0.0.1:52128 requests connection cookie.
[01:19:16] Incoming connection: 127.0.0.1:52127 id: 1
[01:19:17] [npc:join] DummyNPC373909 has joined the server (1:127.0.0.1)
[01:19:17] Incoming connection: 127.0.0.1:52128 id: 2
[01:19:17] [connection] 127.0.0.1:52129 requests connection cookie.
[01:19:17] [npc:join] DummyNPC115845 has joined the server (2:127.0.0.1)
[01:19:18] [connection] 127.0.0.1:52130 requests connection cookie.
[01:19:18] Incoming connection: 127.0.0.1:52129 id: 3
[01:19:19] [npc:join] DummyNPC16928099 has joined the server (3:127.0.0.1)
[01:19:19] [connection] 127.0.0.1:52131 requests connection cookie.
[01:19:19] Incoming connection: 127.0.0.1:52130 id: 4
[01:19:19] [npc:join] DummyNPC36724891 has joined the server (4:127.0.0.1)
[01:19:20] [connection] 127.0.0.1:52132 requests connection cookie.
[01:19:20] Incoming connection: 127.0.0.1:52131 id: 5
[01:19:20] [connection] 127.0.0.1:52133 requests connection cookie.
[01:19:20] [npc:join] DummyNPC3986013 has joined the server (5:127.0.0.1)
[01:19:21] Incoming connection: 127.0.0.1:52132 id: 6
[01:19:21] [connection] 127.0.0.1:52134 requests connection cookie.
[01:19:21] [npc:join] DummyNPC37022138 has joined the server (6:127.0.0.1)
[01:19:21] Incoming connection: 127.0.0.1:52133 id: 7
[01:19:21] [npc:join] DummyNPC1353049 has joined the server (7:127.0.0.1)
[01:19:22] [connection] 127.0.0.1:52135 requests connection cookie.
[01:19:22] [connection] 127.0.0.1:52136 requests connection cookie.
[01:19:22] Incoming connection: 127.0.0.1:52134 id: 8
[01:19:22] [npc:join] DummyNPC31024810 has joined the server (8:127.0.0.1)
[01:19:23] [connection] 127.0.0.1:52137 requests connection cookie.
[01:19:23] Incoming connection: 127.0.0.1:52135 id: 9
[01:19:23] [npc:join] DummyNPC7012966 has joined the server (9:127.0.0.1)
[01:19:23] Incoming connection: 127.0.0.1:52136 id: 10
[01:19:23] [npc:join] DummyNPC24712116 has joined the server (10:127.0.0.1)
[01:19:24] Incoming connection: 127.0.0.1:52137 id: 11
[01:19:24] [npc:join] DummyNPC2994867 has joined the server (11:127.0.0.1)
[01:19:24] [connection] 127.0.0.1:52138 requests connection cookie.
[01:19:25] Incoming connection: 127.0.0.1:52138 id: 12
[01:19:25] [npc:join] DummyNPC16520760 has joined the server (12:127.0.0.1)
[01:19:26] [connection] 127.0.0.1:52139 requests connection cookie.
[01:19:27] Incoming connection: 127.0.0.1:52139 id: 13
[01:19:27] [npc:join] Z815284 has joined the server (13:127.0.0.1)
[01:19:29] [connection] 127.0.0.1:52140 requests connection cookie.
[01:19:30] Incoming connection: 127.0.0.1:52140 id: 14
[01:19:30] [npc:join] Z565152 has joined the server (14:127.0.0.1)
[01:19:30] [connection] 127.0.0.1:52141 requests connection cookie.
[01:19:31] Incoming connection: 127.0.0.1:52141 id: 15
[01:19:32] [npc:join] Z2176296 has joined the server (15:127.0.0.1)
[01:19:45] [npc:part] DummyNPC9116389 has left the server (0:2)
[01:19:45] [npc:part] DummyNPC373909 has left the server (1:2)
[01:19:45] [npc:part] DummyNPC115845 has left the server (2:2)
[01:19:45] [npc:part] DummyNPC16928099 has left the server (3:2)
[01:19:45] [npc:part] DummyNPC36724891 has left the server (4:2)
[01:19:45] [npc:part] DummyNPC3986013 has left the server (5:2)
[01:19:45] [npc:part] DummyNPC37022138 has left the server (6:2)
[01:19:45] [npc:part] DummyNPC1353049 has left the server (7:2)
[01:19:45] [npc:part] DummyNPC31024810 has left the server (8:2)
[01:19:45] [npc:part] DummyNPC7012966 has left the server (9:2)
[01:19:45] [npc:part] DummyNPC24712116 has left the server (10:2)
[01:19:45] [npc:part] DummyNPC2994867 has left the server (11:2)
[01:19:45] [npc:part] DummyNPC16520760 has left the server (12:2)
[01:19:45] [npc:part] Z815284 has left the server (13:2)
[01:19:45] [npc:part] Z565152 has left the server (14:2)
[01:19:45] [npc:part] Z2176296 has left the server (15:2)
[01:19:45] [Zombeydere] 100 Zombeys successfully spawned.
[01:19:45] [Zombeydere] 100 Dummy zombies were kicked.
Reply
#7

Quote:
Originally Posted by NV1D3ATD
Посмотреть сообщение
Disculpa se me habнa olvidado colocar el RNPC.dll
de igual manera acб esta el server.cfg
Por lo que puedo apreciar, tu CPU es un poco antigua;

Los links que te voy a pasar son las lineas del filterscript que tienes que editar, estбn remarcadas en amarillo.

Cambia esta lнnea y la de abajo (la 224)
https://github.com/Troydere/Zombeyde...ydere.pwn#L223

por

PHP код:
    if(DummyCount DUMMY_QUANTSetTimer("DummyZombeys",900,false);
    else {
PoolZombeys(); SetTimer("DummyRemove",2000 MAX_ZOMBEY,false);} 
--

Cambia esta linea
https://github.com/Troydere/Zombeyde...ydere.pwn#L235

por

PHP код:
    if(zombey DUMMY_QUANT MAX_ZOMBEYSetTimer("PoolZombeys",1000,false); 
--

Cambia los valores por defecto de estas opciones:

DUMMY_QUANT ponle 20 aquн
MAX_ZOMBEY ponle 40 aquн

Y me dices como te fuй.
Reply
#8

Quote:
Originally Posted by Troydere
Посмотреть сообщение
Por lo que puedo apreciar, tu CPU es un poco antigua;

Los links que te voy a pasar son las lineas del filterscript que tienes que editar, estбn remarcadas en amarillo.

Cambia esta lнnea y la de abajo (la 224)
https://github.com/Troydere/Zombeyde...ydere.pwn#L223

por

PHP код:
    if(DummyCount DUMMY_QUANTSetTimer("DummyZombeys",900,false);
    else {
PoolZombeys(); SetTimer("DummyRemove",2000 MAX_ZOMBEY,false);} 
--

Cambia esta linea
https://github.com/Troydere/Zombeyde...ydere.pwn#L235

por

PHP код:
    if(zombey DUMMY_QUANT MAX_ZOMBEYSetTimer("PoolZombeys",1000,false); 
--

Cambia los valores por defecto de estas opciones:

DUMMY_QUANT ponle 20 aquн
MAX_ZOMBEY ponle 40 aquн

Y me dices como te fuй.
Me parece que no funciono no vi a ningъn zombie y alparecer le dio kick nuevamente a todos.
Код:
----------
Loaded log file: "server_log.txt".
----------

SA-MP Dedicated Server
----------------------
v0.3.7, ©2005-2015 SA-MP Team

[03:22:16] 
[03:22:16] Server Plugins
[03:22:16] --------------
[03:22:16]  Loading plugin: streamer.dll
[03:22:16] 

*** Streamer Plugin v2.8.2 by Incognito loaded ***

[03:22:16]   Loaded.
[03:22:16]  Loading plugin: RNPC.dll
[03:22:16] RNPC V0.4.1 by Mauzen (03.12.2014)
[03:22:16]   Loaded.
[03:22:16]  Loaded 2 plugins.

[03:22:16] 
[03:22:16] Filterscripts
[03:22:16] ---------------
[03:22:16]   Loading filterscript 'Zombeydere.amx'...
[03:22:16] [Zombeydere] Zombeydere loaded.
[03:22:16]   Loaded 1 filterscripts.

[03:22:16] password = ""  (string)
[03:22:16]   RNPC versionchecker: checking for updates...
[03:22:16] =================GM CREADO POR KAPONI============
[03:22:16] Number of vehicle models: 0
[03:22:17] [connection] 127.0.0.1:49583 requests connection cookie.
[03:22:18] [connection] 127.0.0.1:49584 requests connection cookie.
[03:22:18] Incoming connection: 127.0.0.1:49583 id: 0
[03:22:19] [npc:join] DummyNPC401105 has joined the server (0:127.0.0.1)
[03:22:19] Incoming connection: 127.0.0.1:49584 id: 1
[03:22:19] [connection] 127.0.0.1:49585 requests connection cookie.
[03:22:19] [npc:join] DummyNPC24220458 has joined the server (1:127.0.0.1)
[03:22:20] Incoming connection: 127.0.0.1:49585 id: 2
[03:22:20] [npc:join] DummyNPC38725565 has joined the server (2:127.0.0.1)
[03:22:20] [connection] 127.0.0.1:49586 requests connection cookie.
[03:22:21] Incoming connection: 127.0.0.1:49586 id: 3
[03:22:22] [npc:join] DummyNPC10310247 has joined the server (3:127.0.0.1)
[03:22:22] [connection] 127.0.0.1:49587 requests connection cookie.
[03:22:23] Incoming connection: 127.0.0.1:49587 id: 4
[03:22:23] [npc:join] DummyNPC1311376 has joined the server (4:127.0.0.1)
[03:22:24] [connection] 127.0.0.1:49588 requests connection cookie.
[03:22:25] Incoming connection: 127.0.0.1:49588 id: 5
[03:22:25] [connection] 127.0.0.1:49589 requests connection cookie.
[03:22:25] [npc:join] DummyNPC45199 has joined the server (5:127.0.0.1)
[03:22:26] [connection] 127.0.0.1:49590 requests connection cookie.
[03:22:26] Incoming connection: 127.0.0.1:49589 id: 6
[03:22:27] [npc:join] DummyNPC409349 has joined the server (6:127.0.0.1)
[03:22:27] Incoming connection: 127.0.0.1:49590 id: 7
[03:22:27] [npc:join] DummyNPC23321492 has joined the server (7:127.0.0.1)
[03:22:28] [connection] 127.0.0.1:49591 requests connection cookie.
[03:22:29] Incoming connection: 127.0.0.1:49591 id: 8
[03:22:29] [npc:join] DummyNPC271890 has joined the server (8:127.0.0.1)
[03:22:29] [connection] 127.0.0.1:49592 requests connection cookie.
[03:22:30] Incoming connection: 127.0.0.1:49592 id: 9
[03:22:30] [connection] 127.0.0.1:49593 requests connection cookie.
[03:22:30] [npc:join] DummyNPC9914396 has joined the server (9:127.0.0.1)
[03:22:31] Incoming connection: 127.0.0.1:49593 id: 10
[03:22:31] [connection] 127.0.0.1:49594 requests connection cookie.
[03:22:31] [npc:join] DummyNPC39622032 has joined the server (10:127.0.0.1)
[03:22:32] Incoming connection: 127.0.0.1:49594 id: 11
[03:22:33] [npc:join] DummyNPC24821055 has joined the server (11:127.0.0.1)
[03:22:33] [connection] 127.0.0.1:49595 requests connection cookie.
[03:22:34] Incoming connection: 127.0.0.1:49595 id: 12
[03:22:34] [connection] 127.0.0.1:49596 requests connection cookie.
[03:22:34] [npc:join] DummyNPC239059 has joined the server (12:127.0.0.1)
[03:22:35] Incoming connection: 127.0.0.1:49596 id: 13
[03:22:35] [connection] 127.0.0.1:49597 requests connection cookie.
[03:22:35] [npc:join] DummyNPC3302446 has joined the server (13:127.0.0.1)
[03:22:36] [connection] 127.0.0.1:49598 requests connection cookie.
[03:22:36] Incoming connection: 127.0.0.1:49597 id: 14
[03:22:36] [npc:join] DummyNPC2916599 has joined the server (14:127.0.0.1)
[03:22:37] Incoming connection: 127.0.0.1:49598 id: 15
[03:22:37] [connection] 127.0.0.1:49599 requests connection cookie.
[03:22:37] [npc:join] DummyNPC34614169 has joined the server (15:127.0.0.1)
[03:22:38] Incoming connection: 127.0.0.1:49599 id: 16
[03:22:38] [connection] 127.0.0.1:49600 requests connection cookie.
[03:22:38] [npc:join] Z2198148 has joined the server (16:127.0.0.1)
[03:22:39] Incoming connection: 127.0.0.1:49600 id: 17
[03:22:39] [connection] 127.0.0.1:49601 requests connection cookie.
[03:22:39] [npc:join] Z7153429 has joined the server (17:127.0.0.1)
[03:22:40] Incoming connection: 127.0.0.1:49601 id: 18
[03:22:40] [npc:join] Z9132460 has joined the server (18:127.0.0.1)
[03:22:41] [connection] 127.0.0.1:49602 requests connection cookie.
[03:22:42] Incoming connection: 127.0.0.1:49602 id: 19
[03:22:42] [connection] 127.0.0.1:49603 requests connection cookie.
[03:22:42] [npc:join] Z13285 has joined the server (19:127.0.0.1)
[03:22:43] Incoming connection: 127.0.0.1:49603 id: 20
[03:22:44] [npc:join] Z321172 has joined the server (20:127.0.0.1)
[03:22:44] [connection] 127.0.0.1:49604 requests connection cookie.
[03:22:44] [connection] 127.0.0.1:49605 requests connection cookie.
[03:22:45] Incoming connection: 127.0.0.1:49604 id: 21
[03:22:45] [npc:join] Z221238 has joined the server (21:127.0.0.1)
[03:22:45] Incoming connection: 127.0.0.1:49605 id: 22
[03:22:46] [npc:join] Z160388 has joined the server (22:127.0.0.1)
[03:22:46] [connection] 127.0.0.1:49606 requests connection cookie.
[03:22:47] Incoming connection: 127.0.0.1:49606 id: 23
[03:22:48] [connection] 127.0.0.1:49607 requests connection cookie.
[03:22:48] [npc:join] Z590 has joined the server (23:127.0.0.1)
[03:22:49] Incoming connection: 127.0.0.1:49607 id: 24
[03:22:49] [npc:join] Z0145300 has joined the server (24:127.0.0.1)
[03:22:49] [connection] 127.0.0.1:49608 requests connection cookie.
[03:22:50] [connection] 127.0.0.1:60537 requests connection cookie.
[03:22:50] Incoming connection: 127.0.0.1:49608 id: 25
[03:22:50] [npc:join] Z710133 has joined the server (25:127.0.0.1)
[03:22:51] Incoming connection: 127.0.0.1:60537 id: 26
[03:22:51] [npc:join] Z7136419 has joined the server (26:127.0.0.1)
[03:22:51] [connection] 127.0.0.1:60538 requests connection cookie.
[03:22:52] Incoming connection: 127.0.0.1:60538 id: 27
[03:22:52] [npc:join] Z766174 has joined the server (27:127.0.0.1)
[03:22:53] [connection] 127.0.0.1:60539 requests connection cookie.
[03:22:54] Incoming connection: 127.0.0.1:60539 id: 28
[03:22:54] [npc:join] Z932144 has joined the server (28:127.0.0.1)
[03:22:55] [connection] 127.0.0.1:60540 requests connection cookie.
[03:22:56] Incoming connection: 127.0.0.1:60540 id: 29
[03:22:57] [connection] 127.0.0.1:60541 requests connection cookie.
[03:22:57] [npc:join] Z744146 has joined the server (29:127.0.0.1)
[03:22:58] Incoming connection: 127.0.0.1:60541 id: 30
[03:22:58] [npc:join] Z9198114 has joined the server (30:127.0.0.1)
[03:22:58] [connection] 127.0.0.1:60542 requests connection cookie.
[03:22:59] Incoming connection: 127.0.0.1:60542 id: 31
[03:23:00] [npc:join] Z9132161 has joined the server (31:127.0.0.1)
[03:23:00] [connection] 127.0.0.1:60543 requests connection cookie.
[03:23:01] Incoming connection: 127.0.0.1:60543 id: 32
[03:23:01] [npc:join] Z192236 has joined the server (32:127.0.0.1)
[03:23:02] [connection] 127.0.0.1:60544 requests connection cookie.
[03:23:03] Incoming connection: 127.0.0.1:60544 id: 33
[03:23:03] [connection] 127.0.0.1:60545 requests connection cookie.
[03:23:03] [npc:join] Z714383 has joined the server (33:127.0.0.1)
[03:23:04] Incoming connection: 127.0.0.1:60545 id: 34
[03:23:04] [npc:join] Z737425 has joined the server (34:127.0.0.1)
[03:23:05] [connection] 127.0.0.1:60546 requests connection cookie.
[03:23:06] Incoming connection: 127.0.0.1:60546 id: 35
[03:23:06] [connection] 127.0.0.1:60547 requests connection cookie.
[03:23:06] [npc:join] Z3166246 has joined the server (35:127.0.0.1)
[03:23:07] Incoming connection: 127.0.0.1:60547 id: 36
[03:23:07] [npc:join] Z735354 has joined the server (36:127.0.0.1)
[03:23:09] [connection] 127.0.0.1:60548 requests connection cookie.
[03:23:10] Incoming connection: 127.0.0.1:60548 id: 37
[03:23:10] [npc:join] Z813332 has joined the server (37:127.0.0.1)
[03:23:11] [connection] 127.0.0.1:60549 requests connection cookie.
[03:23:12] Incoming connection: 127.0.0.1:60549 id: 38
[03:23:12] [npc:join] Z0195293 has joined the server (38:127.0.0.1)
[03:23:13] [connection] 127.0.0.1:60550 requests connection cookie.
[03:23:14] Incoming connection: 127.0.0.1:60550 id: 39
[03:23:14] [npc:join] Z186333 has joined the server (39:127.0.0.1)
[03:23:14] [connection] 127.0.0.1:60551 requests connection cookie.
[03:23:15] Incoming connection: 127.0.0.1:60551 id: 40
[03:23:16] [npc:join] Z761266 has joined the server (40:127.0.0.1)
[03:23:16] [connection] 127.0.0.1:60552 requests connection cookie.
[03:23:17] Incoming connection: 127.0.0.1:60552 id: 41
[03:23:18] [npc:join] Z30321 has joined the server (41:127.0.0.1)
[03:23:18] [connection] 127.0.0.1:60553 requests connection cookie.
[03:23:19] Incoming connection: 127.0.0.1:60553 id: 42
[03:23:19] [npc:join] Z0158328 has joined the server (42:127.0.0.1)
[03:24:01] [npc:part] DummyNPC401105 has left the server (0:2)
[03:24:01] [npc:part] DummyNPC24220458 has left the server (1:2)
[03:24:01] [npc:part] DummyNPC38725565 has left the server (2:2)
[03:24:01] [npc:part] DummyNPC10310247 has left the server (3:2)
[03:24:01] [npc:part] DummyNPC1311376 has left the server (4:2)
[03:24:01] [npc:part] DummyNPC45199 has left the server (5:2)
[03:24:01] [npc:part] DummyNPC409349 has left the server (6:2)
[03:24:01] [npc:part] DummyNPC23321492 has left the server (7:2)
[03:24:01] [npc:part] DummyNPC271890 has left the server (8:2)
[03:24:01] [npc:part] DummyNPC9914396 has left the server (9:2)
[03:24:01] [npc:part] DummyNPC39622032 has left the server (10:2)
[03:24:01] [npc:part] DummyNPC24821055 has left the server (11:2)
[03:24:01] [npc:part] DummyNPC239059 has left the server (12:2)
[03:24:01] [npc:part] DummyNPC3302446 has left the server (13:2)
[03:24:01] [npc:part] DummyNPC2916599 has left the server (14:2)
[03:24:01] [npc:part] DummyNPC34614169 has left the server (15:2)
[03:24:01] [npc:part] Z2198148 has left the server (16:2)
[03:24:01] [npc:part] Z7153429 has left the server (17:2)
[03:24:01] [npc:part] Z9132460 has left the server (18:2)
[03:24:01] [npc:part] Z13285 has left the server (19:2)
[03:24:01] [Zombeydere] 40 Zombeys successfully spawned.
[03:24:01] [Zombeydere] 20 Dummy zombies were kicked.
[03:24:21] [connection] 127.0.0.1:64438 requests connection cookie.
[03:24:22] Incoming connection: 127.0.0.1:64438 id: 0
[03:24:22] [join] Lorenzo_Belcore has joined the server (0:127.0.0.1)
[03:25:35] [part] Lorenzo_Belcore has left the server (0:1)
Reply
#9

Se pueden cambiar las coordenadas de los zombies??
Reply
#10

Код:
C:\Users\matia\Desktop\Carpetas\SERVER\GTASERVER\Left 4 dead\filterscripts\fszombies.pwn(161) : error 017: undefined symbol "GetPlayerPoolSize"
C:\Users\matia\Desktop\Carpetas\SERVER\GTASERVER\Left 4 dead\filterscripts\fszombies.pwn(167) : error 017: undefined symbol "GetPlayerPoolSize"
C:\Users\matia\Desktop\Carpetas\SERVER\GTASERVER\Left 4 dead\filterscripts\fszombies.pwn(208) : error 017: undefined symbol "GetPlayerPoolSize"
C:\Users\matia\Desktop\Carpetas\SERVER\GTASERVER\Left 4 dead\filterscripts\fszombies.pwn(283) : error 017: undefined symbol "GetPlayerPoolSize"
C:\Users\matia\Desktop\Carpetas\SERVER\GTASERVER\Left 4 dead\filterscripts\fszombies.pwn(301) : error 017: undefined symbol "GetPlayerPoolSize"
C:\Users\matia\Desktop\Carpetas\SERVER\GTASERVER\Left 4 dead\filterscripts\fszombies.pwn(307) : error 017: undefined symbol "GetPlayerPoolSize"
C:\Users\matia\Desktop\Carpetas\SERVER\GTASERVER\Left 4 dead\filterscripts\fszombies.pwn(321) : error 017: undefined symbol "GetPlayerPoolSize"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


7 Errors.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)