Jump to content

Eduardoh1997

Members
  • Posts

    8
  • Joined

  • Last visited

About Eduardoh1997

  • Birthday 20/02/1995

Details

  • Gang
    none

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Eduardoh1997's Achievements

Newbie

Newbie (4/54)

0

Reputation

  1. Estaba en mantenimiento , porque los datacenter estaban saturados. ahora ya imigraron ip y tiene stock .
  2. Podrias hacer tu propio spawn , con las funciones que te dieron y esta de además podrias hacer como iSG , XLATINO que tienen propio spawn guiCreateGridList --https://wiki.multitheftauto.com/wiki/GuiCreateGridList Te recomiendo leer todo lo que tiene que ver con GridList , usa las funciones que te dieron y saca las funciones del 50p spawn que tienes editado y has uno tullo propio .
  3. Hola alguien no me ayudaria para obtener la resolucion en este client. PD: es un simple dxDrawnRectangle pero quisiera saber que cualquier resoulucion acepte lo que hice. local x,y = guiGetScreenSize() function DXdraw() dxDrawRectangle ( 14, 570, 313, 180, tocolor ( 0, 0, 0, 150 ) ) end addEventHandler("onClientRender", root, DXdraw)
  4. @Flaky fijate qué ahora esta compilado , almenos de qué el tenga un descompilador lua. yo más le recomendaria como habia dicho @BorderLine qué busque en los otros post porqué e visto que ya lo han solucionado.
  5. http://www.totalhosted.com , depende los slots te dan mysql. lo qué me parece es que de 50 slots para arriba te dan mysql y de 50 slots para abajo no te dan y lo deves comprar. tiene muchas formas de pago PayGol , PayPal , RapiPago , Pagofacil etc etc.
  6. intenta con esto. -----creando columna exports.scoreboard:addScoreboardColumn('Rank',getRootElement(),1,42,'Rank') -------creando comando addCommandHandler ( "setrank", function ( player, _, who, rank ) local playerWho = findPlayerByName( who ) if isObjectInACLGroup("user."..getAccountName(getPlayerAccount(player)),aclGetGroup("Ranks")) then if ( playerWho ) then local rank = tonumber ( rank ) if ( rank ) then setElementData ( playerWho, "Rank", ":Rangos/".. tostring ( rank - 0) ..".png" ) -----medallas o u imagenes outputChatBox ("[sERVER] #00ff00Tu medalla ha sido cambiada", playerWho, 255, 0, 0, true)----lo que le aparecera al jugador triggerClientEvent("Rango",player, _, who, rank) end end end end ) ------------------------------------------------------------------------------ script function onPlayerQuit ( ) local playeraccount = getPlayerAccount ( source ) if ( playeraccount ) then local rangos = getElementData(source,"Rank") setAccountData ( playeraccount, "Rank", rangos ) end end function onPlayerLogin ( ) local playeraccount = getPlayerAccount ( source ) if ( playeraccount ) then local rangos = getAccountData ( playeraccount, "Rank" ) if ( rangos ) then setElementData ( source, "Rank", rangos ) end end end addEventHandler ( "onPlayerQuit", getRootElement ( ), onPlayerQuit ) addEventHandler ( "onPlayerLogout", getRootElement ( ), onPlayerQuit ) addEventHandler ( "onPlayerLogin", getRootElement ( ), onPlayerLogin ) -----------------------------------------------------------------------------------------------etc etc etc function findPlayerByName (name) local player = getPlayerFromName(name) if player then return player end for i, player in ipairs(getElementsByType("player")) do if string.find(string.gsub(getPlayerName(player):lower(),"#%x%x%x%x%x%x", ""), name:lower(), 1, true) then return player end end return false end ---- fijate si funciona soy nuevo en esto. message script local messageWin = "" local sX,sY = guiGetScreenSize() local Width,Height = 2,2 local Ximg = (sX/2) - (Width/2) local Yimg = (sY/2) - (Height/2) function renderPlayer () local playeraccount = getPlayerAccount ( source ) if ( playeraccount ) then local rank = getElementData(source,"Rango") dxDrawImage ( Ximg, Yimg, Width, Height, ":Rangos/"..rank..".png") end end
×
×
  • Create New...