Jump to content

qaisjp

Retired Staff
  • Posts

    2,344
  • Joined

  • Days Won

    10

Everything posted by qaisjp

  1. thePlayer - the person who wrote the command [server side script btw] cmd - a STRING of what the cmd is (this currently is "health") amount - (any variables after cmd are the variables a user type in after command) We convert amount to number and stop if not a number We check if its <0 or >255 and stopif so We set the health function setHealth(thePlayer, cmd, amount) amount=tonumber(amount); if not amount then return end if (amount<0) or (amount>255) then return end setElementHealth(thePlayer, amount) end addCommandHandler("health", setHealth)
  2. CLIENT SIDE! addEventHandler('onClientResourceStart',resourceRoot,function() showPlayerHudComponent('crosshair',false) end) .. If that doesn't work: 1) You are conflicting with another script 2) You are doing something wrong.
  3. The only thing that looks nice is the calculator. Phone is not intuitive, uses bad labelling/graphics and probably all hardcoded worse that Castillo's old computer.
  4. Kiddeh's method: if text=="1+2+3" then .. elseif..spam..else error=true end good method: text = protectText(text) local value = loadstring('return '..text)()
  5. Post rankingboard_client.lua in http://pastebin.com
  6. or in ranking board, remove the line that starts rendering/sets label text
  7. Nope. But you can implement something like that [once its run, it can never be undone] - we use similar methods in my server.
  8. Great, I think the best size is the size of that of within Notepad++ -
  9. CourtezBoi / mta-paradise forked from mabako/mta-paradise Why don't you fork his instead of putting a download crap link?
  10. Looks good indeed, only noticed the screenshots now. By the way, the tabs look gigantic e_e
  11. [REL] water_droplets not [REL] realistic_weather
  12. Eh, no. That involves mixing the camera matrixes. Better idea would be a custom camera that allows you to see both peds on the same window [no seperations]
  13. https://community.multitheftauto.com/ind ... ls&id=1359 https://community.multitheftauto.com/ind ... ls&id=1358 https://community.multitheftauto.com/ind ... ls&id=2610 https://community.multitheftauto.com/ind ... ils&id=509 https://community.multitheftauto.com/ind ... ils&id=496 https://community.multitheftauto.com/ind ... ils&id=373 DONE
  14. If it's not the one on GitHub, it's never the official one. https://github.com/mabako/mta-paradise
  15. my god local function connect( ) -- retrieve the settings local server ="mysql116.000webhost.com" local user = g"21313_mtauser" local password ="asshole123" local db = "13213_mta" local port = 3306 local socket = nil end
  16. Thanks thanks and you are welcome
  17. Where did that come frommmmmm xx On sisters iPhone
  18. You're welcome. It does it for all markers in that table FYI. Don't use -1.2, use a multiply
  19. Well, make it open source pls robhol, I'll have plenty of good ideas for you.
  20. He wants a function like this, 50p: setCameraMatrix(...., book movable) I told him to modify freecam for what he needed. I told hi that function edit will never exist
×
×
  • Create New...