Problema con textdraw
#2

Ten en cuenta una cosa, si haces lo siguiente no te va a funcionar:
PHP код:
public OnGameModeInit()
{
    
g_ServerName TextDrawCreate();
    
g_Background TextDrawCreate();
    return 
1;
}
/* No te va a funcionar ya que g_Background se crea DESPUЙS de g_ServerName y lo tapa, entonces no se verб el texto. */ 
Lo ideal serнa ponerlo en este orden:
PHP код:
public OnGameModeInit()
{
    
g_Background TextDrawCreate();
    
g_ServerName TextDrawCreate();
    return 
1;
}
/* Ahora g_ServerName se deberнa crear encima del fondo negro y se verнa perfectamente. */ 
Por otro lado, si por casualidad sospechas que estбs alcanzando el lнmite mбximo de los TextDraws deberнas leerte йste tutorial.
Reply


Messages In This Thread
Problema con textdraw - by M@ty - 24.09.2015, 03:03
Re: Problema con textdraw - by RIDE2DAY - 24.09.2015, 13:59
Respuesta: Re: Problema con textdraw - by M@ty - 24.09.2015, 14:07
Re: Problema con textdraw - by RIDE2DAY - 24.09.2015, 14:15
Respuesta: Problema con textdraw - by M@ty - 24.09.2015, 16:03
Respuesta: Problema con textdraw - by xSeveNx - 24.09.2015, 16:49
Respuesta: Problema con textdraw - by M@ty - 24.09.2015, 17:16
Respuesta: Problema con textdraw - by xSeveNx - 24.09.2015, 17:31
Respuesta: Problema con textdraw - by M@ty - 24.09.2015, 19:16
Respuesta: Problema con textdraw - by M@ty - 28.09.2015, 03:07

Forum Jump:


Users browsing this thread: 1 Guest(s)