AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Spanish (https://forums.alliedmods.net/forumdisplay.php?f=135)
-   -   Warning en Hud[SOLUCIONADO] (https://forums.alliedmods.net/showthread.php?t=156944)

Stereo 05-14-2011 06:31

Warning en Hud[SOLUCIONADO]
 
Buenas, casi siempre que uso el set_task o el hudmesagge me da warning: Tag mismatch

Y quiero solucionarlo xD:

PHP Code:

set_task(0.1"Hola"


PHP Code:

public Hola()
{    
     
set_hudmessage(02550, -1.0, -1.0)
     
show_hudmessage(id"<Hudmessage>")



capozblack 05-14-2011 09:19

Re: Warning en Hud
 
creo que el problema esta en la hudmessage por ejemplo mira:

#include <amxmodx>
#include <amxmisc>

#define PLUGIN "New Plugin"
#define AUTHOR "Unknown"
#define VERSION "1.0"

public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
register_clcmd("say /test", "test")
}
public test(id)
{
set_task(0.1, "Hola")
}
public hola(id)
{
set_hudmessage(255, 0, 0, 0.32, 0.41, 0, 6.0, 12.0)
show_hudmessage(id, "Ola !!")
}

!Morte 05-14-2011 11:24

Re: Warning en Hud
 
PHP Code:

set_task(0.1"hola")

public 
hola(id)
{
          
set_hudmessage(25500, -1.0, -1.006.012.0)
          
show_hudmessage(id"<Hudmessage>")



capozblack 05-14-2011 12:24

Re: Warning en Hud
 
es casi lo mismo te recomiendo usar el amxx studio ayuda mucho con las huds :D

shinoda 05-14-2011 18:40

Re: Warning en Hud
 
Quote:

Originally Posted by Stereo (Post 1469083)
Buenas, casi siempre que uso el set_task o el hudmesagge me da warning: Tag mismatch

Y quiero solucionarlo xD:

PHP Code:

set_task(0.1"Hola"


PHP Code:

public Hola()
{    
     
set_hudmessage(02550, -1.0, -1.0)
     
show_hudmessage(id"<Hudmessage>")



¿Warning?, ahí debería salir error.

--->

PHP Code:

set_task(0.1"Hola"id)

public 
Hola(id)
{
     
set_hudmessage(...
     
show_hudmessage(id, ...) 


Stereo 05-14-2011 19:10

Re: Warning en Hud
 
Gracias shinoda, ese me sirvió más.

Y no, solo me tira warning xD


All times are GMT -4. The time now is 17:07.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.