Jump to content

K4stic

Members
  • Posts

    708
  • Joined

  • Last visited

Everything posted by K4stic

  1. the number after "Damage" separated on lose health of player who attacked by weaponID 26
  2. K4stic

    MySQL and SQL

    i find better http://www.spectralcore.com/fullconvert/
  3. K4stic

    MySQL and SQL

    thanks for that info so how i can make it :3
  4. K4stic

    MySQL and SQL

    i make this: addEventHandler("onResourceStart", resourceRoot, function () local playersacc = executeSQLQuery( "SELECT id, name, password, serial FROM accounts",idName, nameName, passwordName, serialName ) for i, playerdata in ipairs(playersacc) do dbExec( connection,"INSERT INTO accounts SET id=?,username=?, password=?, serial=?", playerdata.id, playerdata.name, playerdata.password, playerdata.serial ) end end ) but it say no exist table accounts(and the table accounts is on internal.db) i wonna transfer account Data's from internal.db(id,username,password,serial) to MySQL
  5. K4stic

    MySQL and SQL

    Hello Community i wonna ask and to you show me how to transfer data of SQL to MySQL MySQL dbExec( connection, "INSERT INTO accounts SET username=?, password=?, serial=?", string.lower( user ), sha256( pass ), getPlayerSerial( source ))
  6. K4stic

    HTTP 404

    stop your local server and open it again (nothing Hard)
  7. use /debugscript 3 may it show a bug
  8. K4stic

    invisible :3

    Thx just making a Crysis Style mod with invisible,undamagable and max stregth
  9. K4stic

    invisible :3

    Thx ( i must check more the wiki about info who i need )
  10. K4stic

    invisible :3

    how make my nametag and health invisible by command and visible again by same commant?
  11. it's because you using lot timers on client side
  12. thx for help i solve it :3 was IDIOT bug :3 but anyway Thx
  13. i sayd scoreboard work perfect the name on scorboard is true on nametag of player not true
  14. man that script is default of MTA not me script it D: that because i ask help
  15. the scoreboard and Chat works good then someone change nick but no the nametags the nametags stuck to old one :3 (look picture) how fix this bug?
  16. how try it 5 days? (and i request trustable CO for Hosting like Vortex Servers or ByServ)
  17. pls help me guys what server Hosting is better ByServ or Vortex Servers? and give me their Stats
  18. K4stic

    Timer :3

    Thx now works
  19. K4stic

    Timer :3

    dxDrawText not removing :3
  20. K4stic

    Timer :3

    like this? addEventHandler("onClientPlayerWasted", localPlayer, function(k) local rx, ry = guiGetScreenSize () if source ~= localPlayer then return end if isElement(k) and getElementType(k) == "player" then setCameraTarget(k) andEventHandler("onClientRender", root, killcam) setTimer(removeEventHandler("onClientRender",6000,1,root,killcam) end end ) function killcam() dxDrawText ( "Viewing Kill Cam of " .. getPlayerName(k) .. "!", 0, 0, rx, ry, tocolor ( 255, 0, 0, 255 ), 5, "default", "center", "center", false, false, false) end
  21. K4stic

    Timer :3

    addEventHandler("onClientPlayerWasted", localPlayer, function(k) local rx, ry = guiGetScreenSize () if source ~= localPlayer then return end if isElement(k) and getElementType(k) == "player" then setCameraTarget(k) setTimer(dxDrawText ( "Viewing Kill Cam of " .. getPlayerName(k) .. "!", 0, 0, rx, ry, tocolor ( 255, 0, 0, 255 ), 5, "default", "center", "center", false, false, false),6000,1) end end )
  22. K4stic

    Timer :3

    i wonna to show it for that time
  23. K4stic

    Timer :3

    like setTimer(dxDrawText ( "Viewing Kill Cam of " .. getPlayerName(k) .. "!", 0, 0, rx, ry, tocolor ( 255, 0, 0, 255 ), 5, "default", "center", "center", false, false, false),6000,1)
  24. K4stic

    Timer :3

    how connect time with this? dxDrawText ( "Viewing Kill Cam of " .. getPlayerName(k) .. "!", 0, 0, rx, ry, tocolor ( 255, 0, 0, 255 ), 5, "default", "center", "center", false, false, false)
×
×
  • Create New...