-
Posts
300 -
Joined
-
Last visited
-Doc-'s Achievements

Prankster (22/54)
1
Reputation
-
Soapbosnia started following -Doc-
-
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.
-
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
-
Why you deleting whole script. Someone can get help from this topic
-
How to change texture color?
-
The data weren't set tried with outpuChatBox and nothing
-
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.
-
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)