Jump to content

[Ayuda] Título del server en DxDrawText


Recommended Posts

Hola, buenas tardes a todos, tengo unaduda, no se si me puedan ayudar.

Hice con el GUI Editor un par de títulos para mi server, que siempre esten mostrandose, pero no tengo ni la menor idea de como hacerlo, ni el server o client.

Dejo lo que arrojó el Gui editor:

screenWidth local screenHeight = guiGetScreenSize ()  
  
addEventHandler("onClientRender", root, 
    function() 
        dxDrawText("Picadas 24/7", 428, 22, 864, 79, tocolor(153, 0, 0, 255), 3.00, "pricedown", "center", "center", false, false, false, false, false) 
        dxDrawText("Lista de comandos: F9", 396 + 1, 609 + 1, 938 + 1, 706 + 1, tocolor(0, 0, 0, 255), 1.60, "bankgothic", "center", "center", false, false, false, false, false) 
        dxDrawText("Lista de comandos: F9", 396, 609, 938, 706, tocolor(229, 140, 0, 255), 1.60, "bankgothic", "center", "center", false, false, false, false, false) 
    end 
) 
  

De antemano gracias.

Link to comment

Intenta ponerlo así.

local screenHeight, screenWidth = guiGetScreenSize () 
  
addEventHandler("onClientRender", root, 
    function() 
        dxDrawText("Picadas 24/7", 428, 22, 864, 79, tocolor(153, 0, 0, 255), 3.00, "pricedown", "center", "center", false, false, false, false, false) 
        dxDrawText("Lista de comandos: F9", 396 + 1, 609 + 1, 938 + 1, 706 + 1, tocolor(0, 0, 0, 255), 1.60, "bankgothic", "center", "center", false, false, false, false, false) 
        dxDrawText("Lista de comandos: F9", 396, 609, 938, 706, tocolor(229, 140, 0, 255), 1.60, "bankgothic", "center", "center", false, false, false, false, false) 
    end 
) 

Link to comment
Intenta ponerlo así.
local screenHeight, screenWidth = guiGetScreenSize () 
  
addEventHandler("onClientRender", root, 
    function() 
        dxDrawText("Picadas 24/7", 428, 22, 864, 79, tocolor(153, 0, 0, 255), 3.00, "pricedown", "center", "center", false, false, false, false, false) 
        dxDrawText("Lista de comandos: F9", 396 + 1, 609 + 1, 938 + 1, 706 + 1, tocolor(0, 0, 0, 255), 1.60, "bankgothic", "center", "center", false, false, false, false, false) 
        dxDrawText("Lista de comandos: F9", 396, 609, 938, 706, tocolor(229, 140, 0, 255), 1.60, "bankgothic", "center", "center", false, false, false, false, false) 
    end 
) 

Pues ya lo intenté y no ví cambio alguno por cierto, pero no, no me ha funcionado.

Para hacer funcionar este scrypt se ocupa lua para servidor y client o como esta? perdonen mi ignorancia :mrgreen:

Saludos.

Link to comment

Pues ya lo intenté y no ví cambio alguno por cierto, pero no, no me ha funcionado.

Para hacer funcionar este scrypt se ocupa lua para servidor y client o como esta? perdonen mi ignorancia :mrgreen:

Saludos.

Tranquilo, efectivamente esté codigo está apto para client, ya que contiene funciones dx, sólo crea tu archivo lua, luego identifica en el meta que ese archivo es client, una vez hecho esto pega eso que hiciste en guieditor y te funcionará.

Link to comment
Osvaldo098

Gracias, ya lo pegué como estaba, pero no me aparece, que hago?

Gracias, saludos.

en vez de 'root' utiliza getRootElement()

'root' esta predefinido en MTA y es lo mismo que getRootElement().

@Osvaldo098: Escribe "debugscript 3"(sin comillas) en F8 y dinos si sale algún error.

Link to comment
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...