Jump to content

qaisjp

Retired Staff
  • Posts

    2,344
  • Joined

  • Days Won

    10

Everything posted by qaisjp

  1. qaisjp

    help me

    local weapons = { {fileName="M4", model=356},{fileName="Sniper", model=358}, {fileName="Desert Eagle", model=348},{fileName="Shotgun", model=349} } function load() for index, weapon in pairs(weapons) do txd = engineLoadTXD ( weapon.fileName.. ".txd" ) engineImportTXD ( txd, weapon.model ) dff = engineLoadDFF ( weapon.fileName.. ".dff", 0 ) engineReplaceModel ( dff, weapon.model ) end end addEventHandler("onClientResourceStart",resourceRoot, function () local version = getVersion() if version.mta == "1.1.1" then setTimer ( load, 1000, 1) end end) and btw DevPoint, when you said " " all you were showing was that you are a complete fail.
  2. qaisjp

    Problem

    you could atleast say thank you for helping you out in that first thing. how cruel.
  3. qaisjp

    Problem

    server function requestShowStats(player) local acc=getPlayerAccount(player) local czas=getAccountData(acc,"player.gametime") local x=getAccountData(acc,"player.locx") local y=getAccountData(acc,"player.locy") local z=getAccountData(acc,"player.locz") local lastvisit=getAccountData(acc,"player.lastvisit") local cash=getAccountData(acc,"player.money") local email=getAccountData(acc,"player.email") local age=getAccountData(acc,"player.age") triggerClientEvent (player, "onShowStats", player,czas,x,y,z,lastvisit,cash,email,age) end
  4. Dear MTA, please add rotation args to dxDrawText. Thanks.
  5. really expected not for everyone FAKEMAN
  6. why create an image for numbers 0-9 and letters a-z when you can jst use fonts and randomly generated angles?
  7. not images, but rotated texts with different fonts
  8. I JUST WANT IT TO WORK ON MY LAPTOP
  9. and that it may be releasing OR some update on 24/may/2012
  10. no its just CapY licking your leg.
  11. /me kills TheKid (GTA V crashd his laptop)
  12. function dxCreateCaptcha(length) local c = createElement("dxCaptcha") local alph = {"a","b", "c", "d", "e", "f", "g", "h", "i", "insertmore"} local captch = "" for i=0, length do if math.random(2)==2 then captch = captch..alpha[math.random(#alph)] else captch = captch..math.random(0,9) end end setElementData(c, "captcha", captch) return c end function dxDrawCaptcha(captcha) if not isElement(captcha) -- bunch of dxDrawText calls end end sorry about the create element thing, i was just kinda bored
  13. you think all servers have clans? noobassbeatch
×
×
  • Create New...