Tron Legacy v1.3.5b
#1
[Imagen: tron_legacy_combo_by_patrick2011-d37ksyz.jpg]

Bueno gente, les dejo otro modo que cree a mediados del año pasado. El modo esta basado en la película 'Tron Legacy', lo trate de hacer lo mas parecido posible. Me acuerdo que tenia un par de bugs, pero no eran graves. Espero que lo disfruten, ami me encanto jugarlo. Si tengo tiempo le voy a dar soporte, pero por ahora no.

Objetivo Único: Matar al líder del otro equipo.

Cada equipo tiene un líder el cual se lo diferencia por un color. Naranja = TT | Blanco = CT. En la pelicula, CLU tenia el traje naranja y Kevin Flynn (el q creo todo) tenia el traje blanco, así como ambos el disco de este color.

Así como en la película nosotros podemos tirar el disco apretando el botón derecho (IN_ATTACK2 para los scripters xd) y, para agregarle mas dinamismo le puse la opción de llamar al disco usando la tecla que tengan bindiado USE (IN_USE [con la que tocas botones]). El disco va a rastrear a los enemigos y los va a seguir, pero si choca algo rompible, el disco regresa a nosotros rompiendo con lo que choco (confuso xd).

Hay una escena que me acuerdo, que Kevin llega a un boliche, se agacha y apaga las luces. Bueno esto también es posible, siendo el líder [C/T]T si nos agachamos y apretamos la tecla que tengan bindiado USE, las luces se apagaran.
Vídeo (link): Min 2:40'

Cada jugador tiene glow según sea el líder o no y su modelo respectivo de cuchillo (disco).

Requisito:
Cs Models API
AmxModX 1.8.3

ChangeLog:
Código:
v1.0.0b - Versión base
v1.1.0b: // Gran UPDATE!
- Corregido errores de glow, caídas del servidor
- Orpheu removido
- NVG al líder removido
- Mejor forma de aplicar glow (mas optimizado)
- Uso de bits
- Removido entidades de hostage, game_player_equip, bombas y Vips.
- Ahora el disco después de ser lanzado, vuelve a los 10 seg
- Nuevo hud de posiciones y demás
- Muestra cuantas rondas ganaron los CTS y TTs
- Ahora el cielo tiene un 'modelo' de espacio
- Mejor forma de remover la ent de un jugador en default_values.
- Stock para obtener el color que debe llevar un jugador (get_player_color) y otro  para saber si es líder (is_lider)
v1.2.0b
- Varios cambios
- Nuevos modelos
- Ahora respawneas apenas te conectas
- Nuevo menú principal
- Agregado Shop
- Agregado Clases
- Agregado Mejoras
- Agregado Menú de Config
- Agregado la moneda TronCoins (Side e.e)
- Se remueven ents que afectan al juego (hostage, c4, etc)
- Agregado Natives
- No mostramos la vida, el chaleco y la guita (la default)
- Nuevo hud personalizado para cada usuario y otro que es general
- Mejorado el apagado de luces
- Ahora se hookean otras funciones como Ham_CS_Player_ResetMaxSpeed (1.8.3)
- Se hookea el say y aparece [LIDER][CLASE] Nombre : say (aparece [LIDER] si lo es, sino no)
- Comando para admins para dar TronCoins -> tron_give_coins "nombre" "cantidad > 0"
- Arreglado: ahora el líder puede recuperar normalmente su disco apretando la letra 'E'
- Arreglado: ahora el líder puede apagar la luz agachándose y apretando 'E'
- El disco ahora tiene menos gravedad por lo que va mas 'directo' al objetivo (rebota menos)

v1.3.0b
- Mejorado el código en algunas cosas
- Agregado MOTOS
- El menú principal con mas opciones de juego
- Nuevo menú para controla la (side|forward|back) speed
- Removido entidades molestas o perjudiciales para el juego.
- Nuevo contador de motos de cada equipo
- Arreglado el bug de la muerte de los lideres.
- Ahora el 'kill' en consola no anda.
- Podes hackear la moto del otro equipo

v1.3.5b
- Arreglado varios bugs
- Nuevos tipos de discos (congelante, explosivo, teletransportador)
- Nuevos models de discos
- Solo se puede matar al lider por delante (no le hace daño si el disco o un jugador le pega en la espalda)

Items Nuevos (del shop): Explicación
Bueno ahora podemos agregar items al shop, mediante la native tron_item_add. La native esta compuesta de: tron_item_add(Nombre, Precio, Solo_Liders, Callback)

El callback indica que cuando compremos un item, el plugin va a llamar a la función que pasemos por ahí para hacer los checkeos de forma externa. Ejemplo:
Código PHP:
#include <amxmodx>
#include <fun>
#include <tron_legacy>

#define PLUGIN "Tron Items Example"
#define VERSION "1.0"
#define AUTHOR "Kane"

const TASK_GOD 300
const TASK_GRAV 400

new g_iGod[33 char]
new 
g_iGrav[33 char], Float:g_flLastGravity[33]

public 
plugin_precache() {
    
register_plugin(PLUGINVERSIONAUTHOR)
    
    
// Items
    
tron_item_add("+100 HP"20false"GiveHP")
    
tron_item_add("+100 Armor"15false"GiveArmor")
    
tron_item_add("GodMode (10 segs)"10true"SetGodMode")
    
tron_item_add("No-Gravedad (10 segs)"15false"NoGrav")
}

public 
GiveHP(id)
{
    
set_user_health(idget_user_health(id)+100)
    
tron_chatcolor(id"%s Compraste^3 +100 HP^1"szPrefix)
}

public 
GiveArmor(id)
{
    
set_user_armor(idget_user_armor(id)+100)
    
tron_chatcolor(id"%s Compraste^3 +100 Armor^1"szPrefix)
}

public 
SetGodMode(id)
{
    if (!
g_iGod{id})
    {
        
g_iGod{id} = true
        set_user_godmode
(id1)
        
        
tron_chatcolor(id"%s Compraste^3 GodMode^1 por^4 10 segundos^1!"szPrefix)
        
        
set_task(10.0"RemoveGodMode"id+TASK_GOD)
    }
    else
        
tron_chatcolor(id"%s Estas^3 usando^1 este item!"szPrefix)
}

public 
RemoveGodMode(taskid)
{
    new 
id taskid TASK_GOD
    
    g_iGod
{id} = false
    set_user_godmode
(id0)
    
    
tron_chatcolor(id"%s Termino tu ^3 GodMode^1!"szPrefix)
    
    
remove_task(id+TASK_GOD)
}

public 
NoGrav(id)
{
    if (!
g_iGrav{id})
    {
        
g_iGrav{id} = true
        
        g_flLastGravity
[id] = get_user_gravity(id)
        
set_user_gravity(id0.2)
        
        
tron_chatcolor(id"%s Compraste^3 No-Gravedad^1 por^4 10 segundos^1!"szPrefix)
        
        
set_task(10.0"ResetGrav"id+TASK_GRAV)
    }
    else
        
tron_chatcolor(id"%s Estas^3 usando^1 este item!"szPrefix)
}

public 
ResetGrav(taskid)
{
    new 
id taskid TASK_GRAV
    
    g_iGrav
{id} = false
    
    set_user_gravity
(idg_flLastGravity[id])
    
g_flLastGravity[id] = 0.0
    
    tron_chatcolor
(id"%s Termino tu ^3 No-Gravedad^1!"szPrefix)
    
    
remove_task(id+TASK_GRAV)


Discos:
Para cambiar el tipo de disco tenemos que ir al menú del juego (letra M) y apretar la opción "Cambiar tipo de Disco". Nos saldra un print mostrando nuestro estado del disco.

Caracteristicas de cada tipo de disco:
- Explosivo: al tocar a un jugador explota y genera un daño en el radio del jugador, pudiendo matar a sus aliados.
- Tele-transportador: al tocar a un jugador, lo tele-transporta a una parte al azar del mapa.
- Congelante: al tocar a un jugador lo congela (igual que zp)

Motos:

* Las motos están en diferentes puntos de los mapas.
* Hay un total de max. 30 (MAX_MOTOS) motos en el mapa
* Aparecen por todo el mapa en lugares aleatorios.
* Cada equipo tiene para usar 15 motos.
* Las motos están reservadas por equipo, si sos CT no podes subirte a una TT y viceversa.
* Para meterte en la moto debemos apretar la tecla 'E' en frente.
* Para frenar con la moto apretamos la tecla 'CTRL' e ira frenando lentamente (gracias a Mario .AR)
* Para bajarse de la moto apretamos la tecla 'R'. Cuando nos bajamos aparecerá una moto enfrente nuestra que es la que recién usamos.
* Al subirnos a la moto recibimos 1200 de vida, mas velocidad y menos gravedad.
* Las motos se reponen al final de cada ronda o cuando alguien muere estando arriba de una.
* La moto va a una velocidad de 800 u/s.
* Para hackear una moto, hay que pararse en frente de la moto del otro equipo. Se nos abrira un menu preguntandonos si la queremos hackear.
De ser asi, tenemos que estar a una distancia maxima de 100u de la moto, y tardamos 10 segundos en hackearla. Al finalizar, se le cambiara el model
y el glow de la moto. Hay un pequeño bug que la hace traspasable luego de ser hackeado (ni idea porque xd).

To-Do:
* Arreglar el problema del glow cuando estas EN la moto
* Pequeño bug al recibir el disco
* Autos
* Naves (y que vuelen)
* Proporción correcta entre Motos-Autos-Naves y cada equipo

Cualquier duda pregunten!
Cualquier bug posteenlo detalladamente!
Cualquier sugerencia es bienvenida!


Archivos adjuntos
.sma   Descargar AMXX / tron_shop.sma (Tamaño: 2.14 KB / Descargas: 167)
.inc   tron_legacy.inc (Tamaño: 1.43 KB / Descargas: 85)
.sma   Descargar AMXX / tron_legacy_v1.3.5.sma (Tamaño: 73.69 KB / Descargas: 92)
(19/06/2014, 11:08 PM)01011001 escribió: No tiene niveles infinitos, llega hasta 2147483648 (Y despues hace un integer overflow)

(19/06/2014, 11:08 PM)[R]ak escribió: Mis conocimientos aumentaron un 500% con este post
Responder
#2
Parece buen aporte *-* cuando tenga tiempo leo el código a lo mejor me armo un server con este mod xd
[Imagen: bvpq9q-6.png]

NO DOY AYUDA VIA MENSAJE PRIVADO

* Si requieres algún servicio de pago puedes contactarme vía MP o en mi facebook
Responder
#3
Código PHP:
MetaliCross (una boludes

Gracias Lol
Responder
#4
(24/02/2015, 05:30 PM)kikizon2 escribió: Parece buen aporte *-* cuando tenga tiempo leo el código a lo mejor me armo un server con este mod xd
Gracias Crab. Nunca vi un server que no sea surf zp hns pub kz sj, y esto me habia parecido innovador. Lo que pasa es q ahora no estoy en ninguna comunidad y no puedo testear mods jajajajaa.

(24/02/2015, 05:39 PM)meTaLiCroSS escribió:
Código PHP:
MetaliCross (una boludes

Gracias Lol
My pleasure
(19/06/2014, 11:08 PM)01011001 escribió: No tiene niveles infinitos, llega hasta 2147483648 (Y despues hace un integer overflow)

(19/06/2014, 11:08 PM)[R]ak escribió: Mis conocimientos aumentaron un 500% con este post
Responder
#5
Si tan solo tuviera un sv donde probarloOkay pero buena idea
[TUT] Carnage

Fight

"El limite de los backdoors de gente q sabe programar como nostros lo impone nuestra maldad interior y creeme q soy muy malo en el interior"

Anónimo
Responder
#6
podríamos probarlo entre todos , que uno ser arme un dedicado y wala (?

luego lo pruebo con los bots

PD: no voy a entender el mod porque nunca vi la película Whatdone , es buena excusa para descargarla y verla Yao ming
Responder
#7
(24/02/2015, 07:44 PM)ErikMav94 escribió: podríamos probarlo entre todos , que uno ser arme un dedicado y wala (?

luego lo pruebo con los bots

PD: no voy a entender el mod porque nunca vi la película Whatdone , es buena excusa para descargarla y verla Yao ming

Si se copan y dicen un horario, yo pongo el sv, creo que mi internet se bancaria unas cuantas personas...

O eso espero Yao ming
Responder
#8
(24/02/2015, 08:09 PM)sasske escribió: Si se copan y dicen un horario, yo pongo el sv, creo que mi internet se bancaria unas cuantas personas...

O eso espero Yao ming

24/02/2015 a las 9:15 pm.
Responder
#9
Woooow me encantaaaaaa RainbowRainbowRainbow Y tambien la pelicula por dios Gran sonrisa me enamore.

EDIT: DEJA UN VIDEITO :3
Responder
#10
tengo un vps en texas a lo mejor les anda lag pero ah lo puedo subir pacman
[Imagen: bvpq9q-6.png]

NO DOY AYUDA VIA MENSAJE PRIVADO

* Si requieres algún servicio de pago puedes contactarme vía MP o en mi facebook
Responder
#11
(24/02/2015, 11:00 PM)kikizon2 escribió: tengo un vps en texas a lo mejor les anda lag pero ah lo puedo subir pacman

quiero probar el mod no me importa nadaCrab
[TUT] Carnage

Fight

"El limite de los backdoors de gente q sabe programar como nostros lo impone nuestra maldad interior y creeme q soy muy malo en el interior"

Anónimo
Responder
#12
(24/02/2015, 11:09 PM)mongito100 escribió:
(24/02/2015, 11:00 PM)kikizon2 escribió: tengo un vps en texas a lo mejor les anda lag pero ah lo puedo subir pacman

quiero probar el mod no me importa nadaCrab

ok lo abro solo steam Thats what she said y paso la ip >.<
[Imagen: bvpq9q-6.png]

NO DOY AYUDA VIA MENSAJE PRIVADO

* Si requieres algún servicio de pago puedes contactarme vía MP o en mi facebook
Responder
#13
(24/02/2015, 11:10 PM)kikizon2 escribió:
(24/02/2015, 11:09 PM)mongito100 escribió:
(24/02/2015, 11:00 PM)kikizon2 escribió: tengo un vps en texas a lo mejor les anda lag pero ah lo puedo subir pacman

quiero probar el mod no me importa nadaCrab

ok lo abro solo steam Thats what she said y paso la ip >.<

Lo cagaste Roflmao
Responder
#14
(24/02/2015, 11:14 PM)sasske escribió:
(24/02/2015, 11:10 PM)kikizon2 escribió:
(24/02/2015, 11:09 PM)mongito100 escribió:
(24/02/2015, 11:00 PM)kikizon2 escribió: tengo un vps en texas a lo mejor les anda lag pero ah lo puedo subir pacman

quiero probar el mod no me importa nadaCrab

ok lo abro solo steam Thats what she said y paso la ip >.<

Lo cagaste Roflmao

ahora le pido steam a un amigo Fuck yeah
[TUT] Carnage

Fight

"El limite de los backdoors de gente q sabe programar como nostros lo impone nuestra maldad interior y creeme q soy muy malo en el interior"

Anónimo
Responder
#15
No tienen steam ? Pidan la ip por inbox pues xd
[Imagen: bvpq9q-6.png]

NO DOY AYUDA VIA MENSAJE PRIVADO

* Si requieres algún servicio de pago puedes contactarme vía MP o en mi facebook
Responder
#16
(24/02/2015, 11:17 PM)kikizon2 escribió: No tienen steam ? Pidan la ip por inbox pues xd

Yo tengo, envíame la ip privado : 3

EDIT:

[23:16:25] ----: me prestas steam
[23:16:27] ----: ok no
Responder
#17
Hermoso Rainbow

(24/02/2015, 11:10 PM)kikizon2 escribió:
(24/02/2015, 11:09 PM)mongito100 escribió:
(24/02/2015, 11:00 PM)kikizon2 escribió: tengo un vps en texas a lo mejor les anda lag pero ah lo puedo subir pacman

quiero probar el mod no me importa nadaCrab

ok lo abro solo steam Thats what she said y paso la ip >.<

Que chucha steam metele dproto ctm

No tengo steam en esta PC D:
Responder
#18
ya te envio MP me pasas la IP tiralo a las 9 pm

EDIT; buen aporte xd
[Imagen: zcsztw-4.png] [Imagen: 6u5fj2-4.png]
[Imagen: linkedin_thumb_image.png][Imagen: 76561198283253977.png][Imagen: linkedin_thumb_image.png]
Responder
#19
>.< en la carpeta models dice players y en el plugin player


Whatdone
[Imagen: bvpq9q-6.png]

NO DOY AYUDA VIA MENSAJE PRIVADO

* Si requieres algún servicio de pago puedes contactarme vía MP o en mi facebook
Responder
#20
(24/02/2015, 11:33 PM)kikizon2 escribió: >.< en la carpeta models dice players y en el plugin player


Whatdone
Ni me di cuenta jajajaja Despues lo arreglo.
(19/06/2014, 11:08 PM)01011001 escribió: No tiene niveles infinitos, llega hasta 2147483648 (Y despues hace un integer overflow)

(19/06/2014, 11:08 PM)[R]ak escribió: Mis conocimientos aumentaron un 500% con este post
Responder
#21
(25/02/2015, 12:17 AM)kikizon2 escribió: LOGS:

Código:
L 02/24/2015 - 20:34:37: Start of error session.
L 02/24/2015 - 20:34:37: Info (map "de_dust2") (file "addons/amxmodx/logs/error_20150224.log")
L 02/24/2015 - 20:34:37: [ORPHEU] Invalid virtual function "CGameRules::CheckWinConditions"
L 02/24/2015 - 20:34:37: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 20:34:37: [AMXX] Run time error 10: native error (native "OrpheuGetFunctionFromObject")
L 02/24/2015 - 20:34:37: [AMXX]    [0] tron_legacy.sma::plugin_init (line 120)
L 02/24/2015 - 20:35:24: Start of error session.
L 02/24/2015 - 20:35:24: Info (map "de_dust2") (file "addons/amxmodx/logs/error_20150224.log")
L 02/24/2015 - 20:35:24: [ORPHEU] Invalid virtual function "CGameRules::CheckWinConditions"
L 02/24/2015 - 20:35:24: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 20:35:24: [AMXX] Run time error 10: native error (native "OrpheuGetFunctionFromObject")
L 02/24/2015 - 20:35:24: [AMXX]    [0] tron_legacy.sma::plugin_init (line 120)
L 02/24/2015 - 20:37:48: Start of error session.
L 02/24/2015 - 20:37:48: Info (map "de_dust2") (file "addons/amxmodx/logs/error_20150224.log")
L 02/24/2015 - 20:37:48: [ORPHEU] Invalid virtual function "CGameRules::CheckWinConditions"
L 02/24/2015 - 20:37:48: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 20:37:48: [AMXX] Run time error 10: native error (native "OrpheuGetFunctionFromObject")
L 02/24/2015 - 20:37:48: [AMXX]    [0] tron_legacy.sma::plugin_init (line 120)
L 02/24/2015 - 20:48:51: Start of error session.
L 02/24/2015 - 20:48:51: Info (map "de_dust2") (file "addons/amxmodx/logs/error_20150224.log")
L 02/24/2015 - 20:48:51: [ORPHEU] Invalid virtual function "CGameRules::CheckWinConditions"
L 02/24/2015 - 20:48:51: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 20:48:51: [AMXX] Run time error 10: native error (native "OrpheuGetFunctionFromObject")
L 02/24/2015 - 20:48:51: [AMXX]    [0] tron_legacy.sma::plugin_init (line 120)
L 02/24/2015 - 20:50:55: Function is not present (function "create_lider_t") (plugin "tron_legacy.amxx")
L 02/24/2015 - 20:50:55: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 20:50:55: [AMXX] Run time error 10: native error (native "set_task")
L 02/24/2015 - 20:50:55: [AMXX]    [0] tron_legacy.sma::create_lider_t (line 571)
L 02/24/2015 - 20:50:55: [AMXX]    [1] tron_legacy.sma::Ham_SpawnPost (line 384)
L 02/24/2015 - 20:51:07: [ORPHEU] Invalid function [0]
L 02/24/2015 - 20:51:07: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 20:51:07: [AMXX] Run time error 10: native error (native "OrpheuCall")
L 02/24/2015 - 20:51:07: [AMXX]    [0] tron_legacy.sma::Ham_PlayerKilled (line 422)
L 02/24/2015 - 20:51:32: [ORPHEU] Invalid function [0]
L 02/24/2015 - 20:51:32: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 20:51:32: [AMXX] Run time error 10: native error (native "OrpheuCall")
L 02/24/2015 - 20:51:32: [AMXX]    [0] tron_legacy.sma::Ham_PlayerKilled (line 422)
L 02/24/2015 - 20:52:34: Function is not present (function "create_lider_t") (plugin "tron_legacy.amxx")
L 02/24/2015 - 20:52:34: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 20:52:34: [AMXX] Run time error 10: native error (native "set_task")
L 02/24/2015 - 20:52:34: [AMXX]    [0] tron_legacy.sma::create_lider_t (line 571)
L 02/24/2015 - 20:52:34: [AMXX]    [1] tron_legacy.sma::Ham_SpawnPost (line 384)
L 02/24/2015 - 20:52:54: Function is not present (function "create_lider_t") (plugin "tron_legacy.amxx")
L 02/24/2015 - 20:52:54: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 20:52:54: [AMXX] Run time error 10: native error (native "set_task")
L 02/24/2015 - 20:52:54: [AMXX]    [0] tron_legacy.sma::create_lider_t (line 571)
L 02/24/2015 - 20:52:54: [AMXX]    [1] tron_legacy.sma::Ham_SpawnPost (line 384)
L 02/24/2015 - 20:53:32: [ORPHEU] Invalid function [0]
L 02/24/2015 - 20:53:32: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 20:53:32: [AMXX] Run time error 10: native error (native "OrpheuCall")
L 02/24/2015 - 20:53:32: [AMXX]    [0] tron_legacy.sma::Ham_PlayerKilled (line 422)
L 02/24/2015 - 20:54:38: [ORPHEU] Invalid function [0]
L 02/24/2015 - 20:54:38: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 20:54:38: [AMXX] Run time error 10: native error (native "OrpheuCall")
L 02/24/2015 - 20:54:38: [AMXX]    [0] tron_legacy.sma::Ham_PlayerKilled (line 422)
L 02/24/2015 - 20:55:28: Function is not present (function "create_lider_t") (plugin "tron_legacy.amxx")
L 02/24/2015 - 20:55:28: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 20:55:28: [AMXX] Run time error 10: native error (native "set_task")
L 02/24/2015 - 20:55:28: [AMXX]    [0] tron_legacy.sma::create_lider_t (line 571)
L 02/24/2015 - 20:55:28: [AMXX]    [1] tron_legacy.sma::Ham_SpawnPost (line 384)
L 02/24/2015 - 20:56:58: [ORPHEU] Invalid function [0]
L 02/24/2015 - 20:56:58: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 20:56:58: [AMXX] Run time error 10: native error (native "OrpheuCall")
L 02/24/2015 - 20:56:58: [AMXX]    [0] tron_legacy.sma::Ham_PlayerKilled (line 422)
L 02/24/2015 - 21:00:24: [ORPHEU] Invalid function [0]
L 02/24/2015 - 21:00:24: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:00:24: [AMXX] Run time error 10: native error (native "OrpheuCall")
L 02/24/2015 - 21:00:24: [AMXX]    [0] tron_legacy.sma::Ham_PlayerKilled (line 422)
L 02/24/2015 - 21:00:47: Function is not present (function "create_lider_t") (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:00:47: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:00:47: [AMXX] Run time error 10: native error (native "set_task")
L 02/24/2015 - 21:00:47: [AMXX]    [0] tron_legacy.sma::create_lider_t (line 571)
L 02/24/2015 - 21:00:47: [AMXX]    [1] tron_legacy.sma::Ham_SpawnPost (line 384)
L 02/24/2015 - 21:01:12: [ORPHEU] Invalid function [0]
L 02/24/2015 - 21:01:12: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:01:12: [AMXX] Run time error 10: native error (native "OrpheuCall")
L 02/24/2015 - 21:01:12: [AMXX]    [0] tron_legacy.sma::Ham_PlayerKilled (line 422)
L 02/24/2015 - 21:01:54: [ORPHEU] Invalid function [0]
L 02/24/2015 - 21:01:54: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:01:54: [AMXX] Run time error 10: native error (native "OrpheuCall")
L 02/24/2015 - 21:01:54: [AMXX]    [0] tron_legacy.sma::Ham_PlayerKilled (line 422)
L 02/24/2015 - 21:02:40: Start of error session.
L 02/24/2015 - 21:02:40: Info (map "de_dust2") (file "addons/amxmodx/logs/error_20150224.log")
L 02/24/2015 - 21:02:40: [ORPHEU] Invalid virtual function "CGameRules::CheckWinConditions"
L 02/24/2015 - 21:02:40: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:02:40: [AMXX] Run time error 10: native error (native "OrpheuGetFunctionFromObject")
L 02/24/2015 - 21:02:40: [AMXX]    [0] tron_legacy.sma::plugin_init (line 120)
L 02/24/2015 - 21:03:44: Function is not present (function "create_lider_ct") (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:03:44: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:03:44: [AMXX] Run time error 10: native error (native "set_task")
L 02/24/2015 - 21:03:44: [AMXX]    [0] tron_legacy.sma::create_lider_ct (line 593)
L 02/24/2015 - 21:03:44: [AMXX]    [1] tron_legacy.sma::Ham_SpawnPost (line 390)
L 02/24/2015 - 21:04:05: Function is not present (function "create_lider_ct") (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:04:05: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:04:05: [AMXX] Run time error 10: native error (native "set_task")
L 02/24/2015 - 21:04:05: [AMXX]    [0] tron_legacy.sma::create_lider_ct (line 593)
L 02/24/2015 - 21:04:05: [AMXX]    [1] tron_legacy.sma::Ham_SpawnPost (line 390)
L 02/24/2015 - 21:04:58: Function is not present (function "create_lider_ct") (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:04:58: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:04:58: [AMXX] Run time error 10: native error (native "set_task")
L 02/24/2015 - 21:04:58: [AMXX]    [0] tron_legacy.sma::create_lider_ct (line 593)
L 02/24/2015 - 21:04:58: [AMXX]    [1] tron_legacy.sma::Ham_SpawnPost (line 390)
L 02/24/2015 - 21:05:18: Function is not present (function "create_lider_ct") (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:05:18: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:05:18: [AMXX] Run time error 10: native error (native "set_task")
L 02/24/2015 - 21:05:18: [AMXX]    [0] tron_legacy.sma::create_lider_ct (line 593)
L 02/24/2015 - 21:05:18: [AMXX]    [1] tron_legacy.sma::Ham_SpawnPost (line 390)
L 02/24/2015 - 21:07:26: Start of error session.
L 02/24/2015 - 21:07:26: Info (map "de_dust2") (file "addons/amxmodx/logs/error_20150224.log")
L 02/24/2015 - 21:07:26: [ORPHEU] Invalid virtual function "CGameRules::CheckWinConditions"
L 02/24/2015 - 21:07:26: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:07:26: [AMXX] Run time error 10: native error (native "OrpheuGetFunctionFromObject")
L 02/24/2015 - 21:07:26: [AMXX]    [0] tron_legacy.sma::plugin_init (line 120)
L 02/24/2015 - 21:08:36: Function is not present (function "create_lider_ct") (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:08:36: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:08:36: [AMXX] Run time error 10: native error (native "set_task")
L 02/24/2015 - 21:08:36: [AMXX]    [0] tron_legacy.sma::create_lider_ct (line 593)
L 02/24/2015 - 21:08:36: [AMXX]    [1] tron_legacy.sma::Ham_SpawnPost (line 390)
L 02/24/2015 - 21:09:05: [ORPHEU] Invalid function [0]
L 02/24/2015 - 21:09:05: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:09:05: [AMXX] Run time error 10: native error (native "OrpheuCall")
L 02/24/2015 - 21:09:05: [AMXX]    [0] tron_legacy.sma::Ham_PlayerKilled (line 422)
L 02/24/2015 - 21:09:39: [ORPHEU] Invalid function [0]
L 02/24/2015 - 21:09:39: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:09:39: [AMXX] Run time error 10: native error (native "OrpheuCall")
L 02/24/2015 - 21:09:39: [AMXX]    [0] tron_legacy.sma::Ham_PlayerKilled (line 422)
L 02/24/2015 - 21:10:03: [ORPHEU] Invalid function [0]
L 02/24/2015 - 21:10:03: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:10:03: [AMXX] Run time error 10: native error (native "OrpheuCall")
L 02/24/2015 - 21:10:03: [AMXX]    [0] tron_legacy.sma::Ham_PlayerKilled (line 422)
L 02/24/2015 - 21:10:22: [ORPHEU] Invalid function [0]
L 02/24/2015 - 21:10:22: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:10:22: [AMXX] Run time error 10: native error (native "OrpheuCall")
L 02/24/2015 - 21:10:22: [AMXX]    [0] tron_legacy.sma::Ham_PlayerKilled (line 422)
L 02/24/2015 - 21:10:22: [ORPHEU] Invalid function [0]
L 02/24/2015 - 21:10:22: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:10:22: [AMXX] Run time error 10: native error (native "OrpheuCall")
L 02/24/2015 - 21:10:22: [AMXX]    [0] tron_legacy.sma::Ham_PlayerKilled (line 422)
L 02/24/2015 - 21:11:30: [ORPHEU] Invalid function [0]
L 02/24/2015 - 21:11:30: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:11:30: [AMXX] Run time error 10: native error (native "OrpheuCall")
L 02/24/2015 - 21:11:30: [AMXX]    [0] tron_legacy.sma::Ham_PlayerKilled (line 422)
L 02/24/2015 - 21:11:49: Function is not present (function "create_lider_t") (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:11:49: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:11:49: [AMXX] Run time error 10: native error (native "set_task")
L 02/24/2015 - 21:11:49: [AMXX]    [0] tron_legacy.sma::create_lider_t (line 571)
L 02/24/2015 - 21:11:49: [AMXX]    [1] tron_legacy.sma::client_disconnect (line 252)
L 02/24/2015 - 21:11:49: Start of error session.
L 02/24/2015 - 21:11:49: Info (map "de_dust2") (file "addons/amxmodx/logs/error_20150224.log")
L 02/24/2015 - 21:11:49: [ORPHEU] Invalid virtual function "CGameRules::CheckWinConditions"
L 02/24/2015 - 21:11:49: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:11:49: [AMXX] Run time error 10: native error (native "OrpheuGetFunctionFromObject")
L 02/24/2015 - 21:11:49: [AMXX]    [0] tron_legacy.sma::plugin_init (line 120)
L 02/24/2015 - 21:13:15: Start of error session.
L 02/24/2015 - 21:13:15: Info (map "de_dust2") (file "addons/amxmodx/logs/error_20150224.log")
L 02/24/2015 - 21:13:15: [ORPHEU] Invalid virtual function "CGameRules::CheckWinConditions"
L 02/24/2015 - 21:13:15: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:13:15: [AMXX] Run time error 10: native error (native "OrpheuGetFunctionFromObject")
L 02/24/2015 - 21:13:15: [AMXX]    [0] tron_legacy.sma::plugin_init (line 120)
L 02/24/2015 - 21:14:14: Start of error session.
L 02/24/2015 - 21:14:14: Info (map "de_dust2") (file "addons/amxmodx/logs/error_20150224.log")
L 02/24/2015 - 21:14:14: [ORPHEU] Invalid virtual function "CGameRules::CheckWinConditions"
L 02/24/2015 - 21:14:14: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:14:14: [AMXX] Run time error 10: native error (native "OrpheuGetFunctionFromObject")
L 02/24/2015 - 21:14:14: [AMXX]    [0] tron_legacy.sma::plugin_init (line 120)
L 02/24/2015 - 21:15:01: Function is not present (function "create_lider_t") (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:15:01: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:15:01: [AMXX] Run time error 10: native error (native "set_task")
L 02/24/2015 - 21:15:01: [AMXX]    [0] tron_legacy.sma::create_lider_t (line 571)
L 02/24/2015 - 21:15:01: [AMXX]    [1] tron_legacy.sma::Ham_SpawnPost (line 384)




Y arreglamos el bug del takedamage >.<
[Imagen: bvpq9q-6.png]

NO DOY AYUDA VIA MENSAJE PRIVADO

* Si requieres algún servicio de pago puedes contactarme vía MP o en mi facebook
Responder
#22
me pareció ver un dproto Thats what she said
Responder
#23
(25/02/2015, 12:36 AM)wiD escribió: me pareció ver un dproto Thats what she said

Donde ? Thats what she said
[Imagen: bvpq9q-6.png]

NO DOY AYUDA VIA MENSAJE PRIVADO

* Si requieres algún servicio de pago puedes contactarme vía MP o en mi facebook
Responder
#24
"... Me acuerdo que tenia un par de
bugs, pero no eran graves..."

e.e
Todos los MODS VHL totalmente gratuitos  Descarga Aqui

Mis plugins:
STEAM: https://steamcommunity.com/id/Metrikcz/
FB: fb.com/rwoong
Venta plugins a pedido en México mándame MP
Responder
#25
(25/02/2015, 12:19 AM)kikizon2 escribió:
(25/02/2015, 12:17 AM)kikizon2 escribió: LOGS:

Código:
L 02/24/2015 - 20:34:37: Start of error session.
L 02/24/2015 - 20:34:37: Info (map "de_dust2") (file "addons/amxmodx/logs/error_20150224.log")
L 02/24/2015 - 20:34:37: [ORPHEU] Invalid virtual function "CGameRules::CheckWinConditions"
L 02/24/2015 - 20:34:37: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 20:34:37: [AMXX] Run time error 10: native error (native "OrpheuGetFunctionFromObject")
L 02/24/2015 - 20:34:37: [AMXX]    [0] tron_legacy.sma::plugin_init (line 120)
L 02/24/2015 - 20:35:24: Start of error session.
L 02/24/2015 - 20:35:24: Info (map "de_dust2") (file "addons/amxmodx/logs/error_20150224.log")
L 02/24/2015 - 20:35:24: [ORPHEU] Invalid virtual function "CGameRules::CheckWinConditions"
L 02/24/2015 - 20:35:24: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 20:35:24: [AMXX] Run time error 10: native error (native "OrpheuGetFunctionFromObject")
L 02/24/2015 - 20:35:24: [AMXX]    [0] tron_legacy.sma::plugin_init (line 120)
L 02/24/2015 - 20:37:48: Start of error session.
L 02/24/2015 - 20:37:48: Info (map "de_dust2") (file "addons/amxmodx/logs/error_20150224.log")
L 02/24/2015 - 20:37:48: [ORPHEU] Invalid virtual function "CGameRules::CheckWinConditions"
L 02/24/2015 - 20:37:48: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 20:37:48: [AMXX] Run time error 10: native error (native "OrpheuGetFunctionFromObject")
L 02/24/2015 - 20:37:48: [AMXX]    [0] tron_legacy.sma::plugin_init (line 120)
L 02/24/2015 - 20:48:51: Start of error session.
L 02/24/2015 - 20:48:51: Info (map "de_dust2") (file "addons/amxmodx/logs/error_20150224.log")
L 02/24/2015 - 20:48:51: [ORPHEU] Invalid virtual function "CGameRules::CheckWinConditions"
L 02/24/2015 - 20:48:51: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 20:48:51: [AMXX] Run time error 10: native error (native "OrpheuGetFunctionFromObject")
L 02/24/2015 - 20:48:51: [AMXX]    [0] tron_legacy.sma::plugin_init (line 120)
L 02/24/2015 - 20:50:55: Function is not present (function "create_lider_t") (plugin "tron_legacy.amxx")
L 02/24/2015 - 20:50:55: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 20:50:55: [AMXX] Run time error 10: native error (native "set_task")
L 02/24/2015 - 20:50:55: [AMXX]    [0] tron_legacy.sma::create_lider_t (line 571)
L 02/24/2015 - 20:50:55: [AMXX]    [1] tron_legacy.sma::Ham_SpawnPost (line 384)
L 02/24/2015 - 20:51:07: [ORPHEU] Invalid function [0]
L 02/24/2015 - 20:51:07: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 20:51:07: [AMXX] Run time error 10: native error (native "OrpheuCall")
L 02/24/2015 - 20:51:07: [AMXX]    [0] tron_legacy.sma::Ham_PlayerKilled (line 422)
L 02/24/2015 - 20:51:32: [ORPHEU] Invalid function [0]
L 02/24/2015 - 20:51:32: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 20:51:32: [AMXX] Run time error 10: native error (native "OrpheuCall")
L 02/24/2015 - 20:51:32: [AMXX]    [0] tron_legacy.sma::Ham_PlayerKilled (line 422)
L 02/24/2015 - 20:52:34: Function is not present (function "create_lider_t") (plugin "tron_legacy.amxx")
L 02/24/2015 - 20:52:34: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 20:52:34: [AMXX] Run time error 10: native error (native "set_task")
L 02/24/2015 - 20:52:34: [AMXX]    [0] tron_legacy.sma::create_lider_t (line 571)
L 02/24/2015 - 20:52:34: [AMXX]    [1] tron_legacy.sma::Ham_SpawnPost (line 384)
L 02/24/2015 - 20:52:54: Function is not present (function "create_lider_t") (plugin "tron_legacy.amxx")
L 02/24/2015 - 20:52:54: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 20:52:54: [AMXX] Run time error 10: native error (native "set_task")
L 02/24/2015 - 20:52:54: [AMXX]    [0] tron_legacy.sma::create_lider_t (line 571)
L 02/24/2015 - 20:52:54: [AMXX]    [1] tron_legacy.sma::Ham_SpawnPost (line 384)
L 02/24/2015 - 20:53:32: [ORPHEU] Invalid function [0]
L 02/24/2015 - 20:53:32: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 20:53:32: [AMXX] Run time error 10: native error (native "OrpheuCall")
L 02/24/2015 - 20:53:32: [AMXX]    [0] tron_legacy.sma::Ham_PlayerKilled (line 422)
L 02/24/2015 - 20:54:38: [ORPHEU] Invalid function [0]
L 02/24/2015 - 20:54:38: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 20:54:38: [AMXX] Run time error 10: native error (native "OrpheuCall")
L 02/24/2015 - 20:54:38: [AMXX]    [0] tron_legacy.sma::Ham_PlayerKilled (line 422)
L 02/24/2015 - 20:55:28: Function is not present (function "create_lider_t") (plugin "tron_legacy.amxx")
L 02/24/2015 - 20:55:28: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 20:55:28: [AMXX] Run time error 10: native error (native "set_task")
L 02/24/2015 - 20:55:28: [AMXX]    [0] tron_legacy.sma::create_lider_t (line 571)
L 02/24/2015 - 20:55:28: [AMXX]    [1] tron_legacy.sma::Ham_SpawnPost (line 384)
L 02/24/2015 - 20:56:58: [ORPHEU] Invalid function [0]
L 02/24/2015 - 20:56:58: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 20:56:58: [AMXX] Run time error 10: native error (native "OrpheuCall")
L 02/24/2015 - 20:56:58: [AMXX]    [0] tron_legacy.sma::Ham_PlayerKilled (line 422)
L 02/24/2015 - 21:00:24: [ORPHEU] Invalid function [0]
L 02/24/2015 - 21:00:24: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:00:24: [AMXX] Run time error 10: native error (native "OrpheuCall")
L 02/24/2015 - 21:00:24: [AMXX]    [0] tron_legacy.sma::Ham_PlayerKilled (line 422)
L 02/24/2015 - 21:00:47: Function is not present (function "create_lider_t") (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:00:47: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:00:47: [AMXX] Run time error 10: native error (native "set_task")
L 02/24/2015 - 21:00:47: [AMXX]    [0] tron_legacy.sma::create_lider_t (line 571)
L 02/24/2015 - 21:00:47: [AMXX]    [1] tron_legacy.sma::Ham_SpawnPost (line 384)
L 02/24/2015 - 21:01:12: [ORPHEU] Invalid function [0]
L 02/24/2015 - 21:01:12: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:01:12: [AMXX] Run time error 10: native error (native "OrpheuCall")
L 02/24/2015 - 21:01:12: [AMXX]    [0] tron_legacy.sma::Ham_PlayerKilled (line 422)
L 02/24/2015 - 21:01:54: [ORPHEU] Invalid function [0]
L 02/24/2015 - 21:01:54: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:01:54: [AMXX] Run time error 10: native error (native "OrpheuCall")
L 02/24/2015 - 21:01:54: [AMXX]    [0] tron_legacy.sma::Ham_PlayerKilled (line 422)
L 02/24/2015 - 21:02:40: Start of error session.
L 02/24/2015 - 21:02:40: Info (map "de_dust2") (file "addons/amxmodx/logs/error_20150224.log")
L 02/24/2015 - 21:02:40: [ORPHEU] Invalid virtual function "CGameRules::CheckWinConditions"
L 02/24/2015 - 21:02:40: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:02:40: [AMXX] Run time error 10: native error (native "OrpheuGetFunctionFromObject")
L 02/24/2015 - 21:02:40: [AMXX]    [0] tron_legacy.sma::plugin_init (line 120)
L 02/24/2015 - 21:03:44: Function is not present (function "create_lider_ct") (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:03:44: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:03:44: [AMXX] Run time error 10: native error (native "set_task")
L 02/24/2015 - 21:03:44: [AMXX]    [0] tron_legacy.sma::create_lider_ct (line 593)
L 02/24/2015 - 21:03:44: [AMXX]    [1] tron_legacy.sma::Ham_SpawnPost (line 390)
L 02/24/2015 - 21:04:05: Function is not present (function "create_lider_ct") (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:04:05: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:04:05: [AMXX] Run time error 10: native error (native "set_task")
L 02/24/2015 - 21:04:05: [AMXX]    [0] tron_legacy.sma::create_lider_ct (line 593)
L 02/24/2015 - 21:04:05: [AMXX]    [1] tron_legacy.sma::Ham_SpawnPost (line 390)
L 02/24/2015 - 21:04:58: Function is not present (function "create_lider_ct") (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:04:58: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:04:58: [AMXX] Run time error 10: native error (native "set_task")
L 02/24/2015 - 21:04:58: [AMXX]    [0] tron_legacy.sma::create_lider_ct (line 593)
L 02/24/2015 - 21:04:58: [AMXX]    [1] tron_legacy.sma::Ham_SpawnPost (line 390)
L 02/24/2015 - 21:05:18: Function is not present (function "create_lider_ct") (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:05:18: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:05:18: [AMXX] Run time error 10: native error (native "set_task")
L 02/24/2015 - 21:05:18: [AMXX]    [0] tron_legacy.sma::create_lider_ct (line 593)
L 02/24/2015 - 21:05:18: [AMXX]    [1] tron_legacy.sma::Ham_SpawnPost (line 390)
L 02/24/2015 - 21:07:26: Start of error session.
L 02/24/2015 - 21:07:26: Info (map "de_dust2") (file "addons/amxmodx/logs/error_20150224.log")
L 02/24/2015 - 21:07:26: [ORPHEU] Invalid virtual function "CGameRules::CheckWinConditions"
L 02/24/2015 - 21:07:26: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:07:26: [AMXX] Run time error 10: native error (native "OrpheuGetFunctionFromObject")
L 02/24/2015 - 21:07:26: [AMXX]    [0] tron_legacy.sma::plugin_init (line 120)
L 02/24/2015 - 21:08:36: Function is not present (function "create_lider_ct") (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:08:36: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:08:36: [AMXX] Run time error 10: native error (native "set_task")
L 02/24/2015 - 21:08:36: [AMXX]    [0] tron_legacy.sma::create_lider_ct (line 593)
L 02/24/2015 - 21:08:36: [AMXX]    [1] tron_legacy.sma::Ham_SpawnPost (line 390)
L 02/24/2015 - 21:09:05: [ORPHEU] Invalid function [0]
L 02/24/2015 - 21:09:05: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:09:05: [AMXX] Run time error 10: native error (native "OrpheuCall")
L 02/24/2015 - 21:09:05: [AMXX]    [0] tron_legacy.sma::Ham_PlayerKilled (line 422)
L 02/24/2015 - 21:09:39: [ORPHEU] Invalid function [0]
L 02/24/2015 - 21:09:39: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:09:39: [AMXX] Run time error 10: native error (native "OrpheuCall")
L 02/24/2015 - 21:09:39: [AMXX]    [0] tron_legacy.sma::Ham_PlayerKilled (line 422)
L 02/24/2015 - 21:10:03: [ORPHEU] Invalid function [0]
L 02/24/2015 - 21:10:03: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:10:03: [AMXX] Run time error 10: native error (native "OrpheuCall")
L 02/24/2015 - 21:10:03: [AMXX]    [0] tron_legacy.sma::Ham_PlayerKilled (line 422)
L 02/24/2015 - 21:10:22: [ORPHEU] Invalid function [0]
L 02/24/2015 - 21:10:22: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:10:22: [AMXX] Run time error 10: native error (native "OrpheuCall")
L 02/24/2015 - 21:10:22: [AMXX]    [0] tron_legacy.sma::Ham_PlayerKilled (line 422)
L 02/24/2015 - 21:10:22: [ORPHEU] Invalid function [0]
L 02/24/2015 - 21:10:22: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:10:22: [AMXX] Run time error 10: native error (native "OrpheuCall")
L 02/24/2015 - 21:10:22: [AMXX]    [0] tron_legacy.sma::Ham_PlayerKilled (line 422)
L 02/24/2015 - 21:11:30: [ORPHEU] Invalid function [0]
L 02/24/2015 - 21:11:30: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:11:30: [AMXX] Run time error 10: native error (native "OrpheuCall")
L 02/24/2015 - 21:11:30: [AMXX]    [0] tron_legacy.sma::Ham_PlayerKilled (line 422)
L 02/24/2015 - 21:11:49: Function is not present (function "create_lider_t") (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:11:49: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:11:49: [AMXX] Run time error 10: native error (native "set_task")
L 02/24/2015 - 21:11:49: [AMXX]    [0] tron_legacy.sma::create_lider_t (line 571)
L 02/24/2015 - 21:11:49: [AMXX]    [1] tron_legacy.sma::client_disconnect (line 252)
L 02/24/2015 - 21:11:49: Start of error session.
L 02/24/2015 - 21:11:49: Info (map "de_dust2") (file "addons/amxmodx/logs/error_20150224.log")
L 02/24/2015 - 21:11:49: [ORPHEU] Invalid virtual function "CGameRules::CheckWinConditions"
L 02/24/2015 - 21:11:49: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:11:49: [AMXX] Run time error 10: native error (native "OrpheuGetFunctionFromObject")
L 02/24/2015 - 21:11:49: [AMXX]    [0] tron_legacy.sma::plugin_init (line 120)
L 02/24/2015 - 21:13:15: Start of error session.
L 02/24/2015 - 21:13:15: Info (map "de_dust2") (file "addons/amxmodx/logs/error_20150224.log")
L 02/24/2015 - 21:13:15: [ORPHEU] Invalid virtual function "CGameRules::CheckWinConditions"
L 02/24/2015 - 21:13:15: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:13:15: [AMXX] Run time error 10: native error (native "OrpheuGetFunctionFromObject")
L 02/24/2015 - 21:13:15: [AMXX]    [0] tron_legacy.sma::plugin_init (line 120)
L 02/24/2015 - 21:14:14: Start of error session.
L 02/24/2015 - 21:14:14: Info (map "de_dust2") (file "addons/amxmodx/logs/error_20150224.log")
L 02/24/2015 - 21:14:14: [ORPHEU] Invalid virtual function "CGameRules::CheckWinConditions"
L 02/24/2015 - 21:14:14: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:14:14: [AMXX] Run time error 10: native error (native "OrpheuGetFunctionFromObject")
L 02/24/2015 - 21:14:14: [AMXX]    [0] tron_legacy.sma::plugin_init (line 120)
L 02/24/2015 - 21:15:01: Function is not present (function "create_lider_t") (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:15:01: [AMXX] Displaying debug trace (plugin "tron_legacy.amxx")
L 02/24/2015 - 21:15:01: [AMXX] Run time error 10: native error (native "set_task")
L 02/24/2015 - 21:15:01: [AMXX]    [0] tron_legacy.sma::create_lider_t (line 571)
L 02/24/2015 - 21:15:01: [AMXX]    [1] tron_legacy.sma::Ham_SpawnPost (line 384)




Y arreglamos el bug del takedamage >.<
Orpheu no me da ningún error.
Que bug del takedamage? Ajjaja

(25/02/2015, 12:49 AM)Metrikcz escribió: "... Me acuerdo que tenia un par de
bugs, pero no eran graves..."

e.e
Son muchos? Los bots con los que lo probaba no me decían nada xd.
(19/06/2014, 11:08 PM)01011001 escribió: No tiene niveles infinitos, llega hasta 2147483648 (Y despues hace un integer overflow)

(19/06/2014, 11:08 PM)[R]ak escribió: Mis conocimientos aumentaron un 500% con este post
Responder


Salto de foro:


Usuarios navegando en este tema: 1 invitado(s)