Jump to content

ZL|LuCaS

Members
  • Posts

    293
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by ZL|LuCaS

  1. nobody will do anything for you show me your script
  2. sorry, I could not understand can show me pictures?
  3. this error means that copcarla.dff is invalid you can not change the extensions.
  4. use. setElementVelocity createMarker onClientMarkerHit local xdMarker = createMarker (2043.7352294922, 1545.4047851563, 10.671875, "cylinder", 10, 255, 0, 0, 0) addEventHandler("onClientMarkerHit",xdMarker, function(hitPlayer) vehicleMarker = getPedOccupiedVehicle ( hitPlayer ) if hitPlayer ~= getLocalPlayer() then return end setElementVelocity ( vehicleMarker, 2, 0, 1.5) end)
  5. has no problem I'm here to help you
  6. local oi = createVehicle(411, -2405,-598,132.6484375) setElementHealth ( oi , 500 ) use 500 for half life use 1000 for full life
  7. thanks a lot, is works,i dont know why want i to do it that way... what's the problem?
  8. @; xTravax, (this is not an affirmation) I think you do not have much knowledge in Lua (​​programming language) the most interesting is that WHAT YOU KNOW tries encinar those who do not know. thank you.
  9. because creating markers?
  10. all scripters have their own work, no one will do anything for free, that does not mean we can not help in correcting errors in your code.
  11. ZL|LuCaS

    help ..

    getElementHealth getElementPosition
  12. it does not mean that we are not qualified! Finally, most of those that posted in this topic above me are unskilled and only see the money in it. Good luck. really I do not see reason to waste time creating a gamemode that does not interest me.
  13. let me understand, you want a scripter to roleplay? my specialty and race mode I think you can contact DNL291 or castilho!
  14. yes you can there is no difference.
  15. explain better.you need not use loadstring.
  16. believe that; some script is giving server error.
  17. ZL|LuCaS

    Halp!

    explain better
  18. function addTeamColor(player) local playerTeam = getPlayerTeam ( player ) if ( playerTeam ) then local r,g,b = getTeamColor ( playerTeam ) local n1 = toHex(r) local n2 = toHex(g) local n3 = toHex(b) if r <= 16 then n1 = "0"..n1 end if g <= 16 then n2 = "0"..n2 end if b <= 16 then n3 = "0"..n3 end return "#"..n1..""..n2..""..n3..""..getPlayerNametagText(player) else return getPlayerNametagText(player) end end function toHex ( n ) local hexnums = {"0","1","2","3","4","5","6","7", "8","9","A","B","C","D","E","F"} local str,r = "",n%16 if n-r == 0 then str = hexnums[r+1] else str = toHex((n-r)/16)..hexnums[r+1] end return str end addEvent("onWins", true) function screenwinning(Player) x, y = guiGetScreenSize() PlayerName = addTeamColor(player) xR, xG, xB = getTeamColor(getPlayerTeam(Player)) winner = dxText:create("* "..PlayerName.." #FFFFFF has won a point!", x / 2, y / 2.8, false, "default-bold", 3, "center") winner:type('shadow', 1, xR, xG, xB, 175) timerTime = 5 setTimer(function()winner:visible(false)end, 5500, 1) end addEventHandler("onWins", getRootElement(),screenwinning) triggerClientEvent ( "onWins", getRootElement(),activePlayers[1])
×
×
  • Create New...