Jump to content

Desaster

Members
  • Posts

    243
  • Joined

  • Last visited

Everything posted by Desaster

  1. Desaster

    SQL types

    well as I sayed the information seems not to be a correct one , anyways thnx
  2. you can create a DX rectangle and set the lenght to "text" for example then in a functions with a timer wish stars every second you get this "text" and add 1 to it so it will be "text+1" idk if you understand me but I am also on mobile lol ps: "" here isn't a string format it represents the script
  3. Desaster

    SQL types

    hi well I was a bit exploring on the web and i found something and I want to verify it here is really the type INT a bigger number than INTEGER ?
  4. Desaster

    texture.fx

    that was all what I wanted to know well I try to contact that person but I really don't plan to learn it as lua is currently enought for me ^^ anyways thnx
  5. Desaster

    texture.fx

    hi I wanted to know how to create a texture aka .fx file is it scriptable or there is a programm to do it with it ??
  6. hi I saw this in a resource can you tell me what does it do ? ="client.lua" type="client" protected="true"/> ps : in meta.xml
  7. ah thnx I found that place where I can test screen size ^^
  8. try to trigger the player to client side then stop the event for him
  9. ye but you have to trigger it then
  10. the problem gui editor won't output you the gui in screen size
  11. Desaster

    Screen size

    I hate screen size I always stay rating the correct position can you gimme the simplest way to do it that will help me alot thnx ^^
  12. as I understand you you wanna get a table then sort it but you want to show just the top then ok then you could use this links read them carefully viewtopic.php?f=91&t=68164 viewtopic.php?f=91&t=68090
  13. seems cool but wy 9 mb download anyways seems awesom
  14. this might help you viewtopic.php?f=91&t=68164
  15. local startX,startY,startZ = 0,0,0 local endX,endY,endZ = 0,0,0 local cameraStartHighed = 50 local progress = 0 local handled = false local renderFunction renderFunction = function() setCameraMatrix(startX,startY,startZ-(cameraStartHighed*progress), endX,endY,endZ) progress = progress+0.02 if progress >= 1 then setCameraTarget(localPlayer) progress = 0 removeEventHandler("onClientRender",root,renderFunction) handled = false end end local setCameraOnPlayerSpawn = function () local pX,pY,pZ = getElementPosition(localPlayer) startX,startY,startZ, endX,endY,endZ= pX,pY,pZ+cameraStartHighed, pX,pY,pZ setCameraMatrix(startX,startY,startZ, endX,endY,endZ) if not handled then addEventHandler("onClientRender",root,renderFunction) handled = true end progress = 0 end addEventHandler("onClientPlayerSpawn", root, setCameraOnPlayerSpawn) you used the server side function in client side this is the fixed one Bugs of this script every one see the camera matrix
  16. I like the idea funny resource
  17. hi how it is possible to do something like this well I think DX text but can you help me that looks so cool
  18. Desaster

    Question

    Is it possible to sort a table directly in the sql file without importing it to the script So what I mean that it sorts its self alone when I insert anything in it
  19. my table is not indexed so the first sollution is the useful one anyways good to know this thnx all
  20. Thnx that's what I meant ^^
  21. I mean in a lua table (sql was just an expl)
  22. Desaster

    Table limit

    Hi how I can get the first 10 rows of a table like in sql (order a limit) ?
  23. Then use sql thats better or save each weapon alone
×
×
  • Create New...