Jump to content

-Doc-

Members
  • Posts

    300
  • Joined

  • Last visited

1 Follower

Details

  • Gang
    Patriots
  • Occupation
    Learning lua scripting.
  • Interests
    Cycling,reading,learning...

Recent Profile Visitors

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

-Doc-'s Achievements

Prankster

Prankster (22/54)

1

Reputation

  1. https://community.multitheftauto.com/index.php?p=resources&s=details&id=13919 https://community.multitheftauto.com/index.php?p=resources&s=details&id=13923 https://community.multitheftauto.com/index.php?p=resources&s=details&id=13920 Stolen from Grafuroam. No, 'not like groam at all' pls...grow up already. 'I scripted' Ye sure you did. Even Oussez didn't make them.
  2. -Doc-

    Money Hud

    function HudMoney() local cash = getPlayerMoney(getLocalPlayer()) money = "$"..convertNumber(cash) dxDrawText("$"..money.."", 1455, 53, 1478, 86, tocolor(255, 255, 255, 255), 1.50, "pricedown", "left", "top", false, false, false, false, false) end function convertNumber ( number ) local formatted = number while true do formatted, k = string.gsub(formatted, "^(-?%d+)(%d%d%d)", "%1.%2") if ( k==0 ) then break end end return formatted end
  3. Why you deleting whole script. Someone can get help from this topic
  4. How to change texture color?
  5. The data weren't set tried with outpuChatBox and nothing
  6. Hey i've made this script and i want to set element data to receiver and the sender and after 7 seconds remove data. Here's the code.
  7. -Doc-

    Hydra timer

    Hey, i made this script which toggles vehicle_fire when a projectile created and then restores it using timer but doesn't work. timer = {} addEventHandler("onClientProjectileCreation", localPlayer, function() if getElementModel(getPedOccupiedVehicle(getLocalPlayer())) == 520 then setElementData(localPlayer, "anti repeater", true); if ( getElementData(localPlayer, "anti repeater") == true ) then toggleControl("vehicle_fire", false); timer[source] = setTimer( function() toggleControl("vehicle_fire", true); setElementData(localPlayer, "anti repeater", false); end, 5000, 1 ) end end end)
×
×
  • Create New...