Zplague
Gostaria de reagir a esta mensagem? Crie uma conta em poucos cliques ou inicie sessão para continuar.

Zplague Entrar

Seu portal de Zombie Plague no Brasil


description[Cod.] Arrumar Empty[Cod.] Arrumar

more_horiz
Arruma esse plugin aqui para mim.
Spoiler :

description[Cod.] Arrumar EmptyRe: [Cod.] Arrumar

more_horiz
Movido Para Duvidas


Cuidado onde posta amigo porque se não o tópico vai pra lixeira

description[Cod.] Arrumar EmptyRe: [Cod.] Arrumar

more_horiz
Ta aqui, sem nenhum BUG, basta compilar e testar .
Obs: Não testei

SMA

Código:

#include <amxmodx>

new bool:g_restarted, cvar_rr_time, segundos
new bool:g_connected[33]
new max_player

public plugin_init() 
{
   register_plugin("Auto Restart", "1.1", "9 3 () |2 9 ! /<")
   register_logevent("event_game_commencing", 2, "0=World triggered", "1=Game_Commencing")
   register_concmd("say /restart", "concmd_restart")
   
   cvar_rr_time = register_cvar("mp_rr_time", "30")
   
   g_restarted = false
   max_player = get_maxplayers()
}

public event_game_commencing()
{
   if (g_restarted)
   return;
   
   g_restarted = true
   segundos = get_pcvar_num(cvar_rr_time)
   
   Contagem()
}

public client_putinserver(id)
   g_connected[id] = true

public client_disconnect(id)
   g_connected[id] = false

public concmd_restart(id)
{
   if (get_user_flags(id) & ADMIN_MAP)
   {
   static name[32], i
      
   if (task_exists())
   remove_task()
      
   get_user_name(id, name, charsmax(name))
      
   segundos = 0
   Contagem()
      
   for (i = 1; i <= max_player; i++)
   client_print(id, print_chat, "Admin %s, deu restart .", name)
   }
}

public Contagem()
{
   segundos--
   
   if (segundos > 0)
   {
   set_hudmessage(255, 0, 0, -1.0, -1.0, 1, 2.0, 2.0)
   show_hudmessage(0, "O Mapa sera reiniciado em^n%d Segundos", segundos)
      
   set_task(1.0, "Contagem")
   }
   else
   {
   server_cmd("sv_restart 1")
   remove_task()
   }
}

description[Cod.] Arrumar EmptyRe: [Cod.] Arrumar

more_horiz
Deu erro nessa linha aqui:

Código:

get_user_name(id, name, charsmax(name))


O erro diz:

Código:

Error: Undefined symbol "charsmax" on line 45

description[Cod.] Arrumar EmptyRe: [Cod.] Arrumar

more_horiz
ZaturN escreveu:
Deu erro nessa linha aqui:

Código:

get_user_name(id, name, charsmax(name))


O erro diz:

Código:

Error: Undefined symbol "charsmax" on line 45


Use esse compilador > AQUI e tenta compilar .

description[Cod.] Arrumar EmptyRe: [Cod.] Arrumar

more_horiz
Eu utilizei ele e mostrou o mesmo erro na quele quadrado preto do compile

description[Cod.] Arrumar EmptyRe: [Cod.] Arrumar

more_horiz
ZaturN escreveu:
Eu utilizei ele e mostrou o mesmo erro na quele quadrado preto do compile

teste agora

SMA

Código:

#include <amxmodx>

new bool:g_restarted, cvar_rr_time, segundos
new bool:g_connected[33]
new max_player

public plugin_init() 
{
   register_plugin("Auto Restart", "1.1", "9 3 () |2 9 ! /<")
   register_logevent("event_game_commencing", 2, "0=World triggered", "1=Game_Commencing")
   register_concmd("say /restart", "concmd_restart")
   
   cvar_rr_time = register_cvar("mp_rr_time", "30")
   
   g_restarted = false
   max_player = get_maxplayers()
}

public event_game_commencing()
{
   if (g_restarted)
   return;
   
   g_restarted = true
   segundos = get_pcvar_num(cvar_rr_time)
   
   Contagem()
}

public client_putinserver(id)
   g_connected[id] = true

public client_disconnect(id)
   g_connected[id] = false

public concmd_restart(id)
{
   if (get_user_flags(id) & ADMIN_MAP)
   {
   static name[32], i
      
   if (task_exists())
   remove_task()
      
   get_user_name(id, name, 31)
      
   segundos = 0
   Contagem()
      
   for (i = 1; i <= max_player; i++)
   client_print(id, print_chat, "Admin %s, deu restart .", name)
   }
}

public Contagem()
{
   segundos--
   
   if (segundos > 0)
   {
   set_hudmessage(255, 0, 0, -1.0, -1.0, 1, 2.0, 2.0)
   show_hudmessage(0, "O Mapa sera reiniciado em^n%d Segundos", segundos)
      
   set_task(1.0, "Contagem")
   }
   else
   {
   server_cmd("sv_restart 1")
   remove_task()
   }
}

description[Cod.] Arrumar EmptyRe: [Cod.] Arrumar

more_horiz
Agora foi, valeu cara.

description[Cod.] Arrumar EmptyRe: [Cod.] Arrumar

more_horiz
Resolvido ?

description[Cod.] Arrumar EmptyRe: [Cod.] Arrumar

more_horiz
fecha ai perfect LINDA

description[Cod.] Arrumar EmptyRe: [Cod.] Arrumar

more_horiz
Closed.

description[Cod.] Arrumar EmptyRe: [Cod.] Arrumar

more_horiz
privacy_tip Permissões neste sub-fórum
Não podes responder a tópicos
power_settings_newInicie sessão para responder