Jump to content

Tekken

Helpers
  • Posts

    1,423
  • Joined

  • Last visited

  • Days Won

    19

Everything posted by Tekken

  1. As you ca see in your cide you have those lines: setPedAnimation(player, "WUZI", "CS_Dead_Guy", nil, true, false, false, true) Replace nil from your code with -1 like this setPedAnimation(player, "WUZI", "CS_Dead_Guy", -1, true, false, false, true)
  2. But is a problem, when I shoot I hear two sounds default and my sound. How do I desable the default? Edit: I found if I use *.mp3 is slower then *.wav and will be played later that's the problem.
  3. Tekken

    [HELP] Button

    There is an example: function drawWindowAndButton() window_1 = guiCreateWindow(x, y, w, h, "WINDOW 1", false)--Create window 1(Were button is) window_2 = guiCreateWindow(x, y, w, h, "WINDOW 2", false)--Create window 2(The window to show after click) guiSetVisible(window_2, false)--Make window 2 invisible!So we can make is visible later. button = guiCreateButton(x, y, w, h, "SHOW WINDOW 2", false, window_1)--Create the button! end addEventHandler("onClientResourceStart", resourceRoot, drawWindowAndButton) addEventHandler("onClientGUIClick", getResourceRootElement(getThisResource()), function() if (source == button) then guiSetVisible(window_2, true) --Now make window 2 visible! end end)
  4. I think the title says all. I only need any function/event I can use. Thanks.
  5. I've found a fix! The fix: Check your Windows build and if is below 10158 then update it to 10158 or higher!
  6. I have not accused anyone, however I found that in build 10158 everything returns to normal.
  7. Thanks man. Now I am disappointed because I need to wait until final release of the windows 10...
  8. The fix: Check your Windows build and if is below 10158 then update it to 10158 or higher!
  9. Hmm, so that means it will request download every time when I join the server right? But I put `cache="false"` and didn't request download...
  10. I am not sure, but I think when player join the file will be loaded client side and if the argument is false wii load slower right?
  11. So I think the title already say what I want to say. I want to know if I set cache="false" in meta.xml is beter then compiling a file ?
  12. Do you keep the system in a FOLDER on in a FILE.zip ? If you have it in a FILE.zip then please read first topic carefuly each letter.
  13. Man do it like this. Create Tent > /tentbk > destroy theat tent > /loadtents If didn't work it means you did something wrong.
  14. They added more skins on an ID like ID 223 have 2 skins, when you need the other one, the old one is replaced with the new one.
  15. Replace isPedInWater with isElementInWater.
  16. You can't add a new one, you must replace the already existing ones.
  17. What do you mean by `STILL NOT HIDE THE TENT`? Isn't supposed to HIDE anything, just save the tents and cars into the database.
  18. What error you get ? type: /debugscript 3
  19. Daca ai PUTEA incarca tot scriptul.... Edit: Prima eroare spune ca resursa chemata(pool) nu ruleaza. Iar a doua zice ca tabelul nu exista, sunt destul de sigur ca acel tabel este in resursa pool, care nu ruleaza.
  20. Thanks, I got it. Also why don't you use my backup system for saving cars and tents ? It's way beter then the integrated one.
×
×
  • Create New...