Jump to content

IIYAMA

Moderators
  • Posts

    6,097
  • Joined

  • Last visited

  • Days Won

    218

Everything posted by IIYAMA

  1. IIYAMA

    Alt+tab / windowbutton

    I bugged it when I tried different settings. Which file has to be recreated to restore the default settings? I already tried to recreate the gta user file, but it seems not to work. - I replaced the file you shared with me on mega.co (peds.ide) This was after I bugged it. - Audio, http://www.filehippo.com/download_realt ... o_vista_64 << done
  2. IIYAMA

    Alt+tab / windowbutton

    MTADiag http://pastebin.mtasa.com/412461713 Nope, I prefer a clean gta.
  3. Lol, then it isn't strange that it doesn't load the object fully. I asume the col is loaded and the texture isn't. Anyway I didn't know mta supported so much streamed in elements. o_O You definedly executed this clientside?
  4. how many objects are streamed in? -- client outputChatBox(#getElementsByType("object",root,true)) -- 3 argument makes sure it only includes streamed in objects.
  5. how do you roll away? O_o anyway take a look at: https://wiki.multitheftauto.com/wiki/SetFarClipDistance
  6. After some updates from 1.4 I am having trouble using alt+tab or using the windowbutton. When I using them in mta, my screen gets black and I won't be able to go to my background. I only having this problem with mta. Here is some information about the video software and hardware, but I don't think it is the problem since it is only with mta.
  7. Of course I recommend you it, but not before the event("onResourceStart") has been occurred.
  8. When the "onResourceStart" event gets executed, all global variables are access able in all 'files'. You can start calling functions from the other side after this event has been occurred. It is possible to call them before this event, but you can only call loaded ones. This depends on which the meta.xml loads first. I won't recommend you this.
  9. @Sarrum Thanks man!
  10. Does anybody know if there is a function which can check if "Allow screen upload" is enabled? Because I simply can't find it.
  11. show the table.
  12. Atleast break your loop.
  13. Ah sorry, I miss read. My head was stuck at scripting performance. Yea you are totally right.
  14. Because all data from your ram and HDD goes through your CPU(here is your game processed) before it enters your graphical card. Lets call it: "You are driving a very expensive/fast BMW but you can't speed up, because you are stuck in a traffic jam."
  15. @Grafu It may looks a little bit strange because he said cpu, but when your cpu can't handle it any more, your gpu will not work optimal too. In the beginning the fps will not drop, but your frame time will be dramatic increased. (frame time isn't exactly the same as your fps counter) Your fps don't feel smooth while playing, but you still have 60 fps.
  16. I don't help people who only care about the result, you should know that better then me.
  17. @ Mr.gSub Stop talking bullshit and read the triggerClientEvent page yourself. root is the result from getRootElement() function, which is the first optional argument from this function. So you can use both or none because it is optional.
  18. You should let somebody you trust, test it for you. It might be possible that it is an intern problem.
  19. 1.1 Create 1 white dot with photoshop. (high quality png is most of the time better) https://wiki.multitheftauto.com/wiki/DxDrawImage 1.2 or https://wiki.multitheftauto.com/wiki/DxDrawText and use the • character. 2 Change the color of the image(white) or text tocolor(255,255,255,255) -- white tocolor(200,200,200,255) -- light gray tocolor(155,155,155,255) -- gray tocolor(55,55,55,255) -- dark gray tocolor(0,0,0,255) -- black 3 Use tickCount() to manage the progress.
  20. dxDrawText(getPlayerPing(localPlayer),300,300)
  21. np.
  22. If you don't take over my code correctly, it will not work! triggerClientEvent( root,-- target "onLock",-- event vehicle -- vehicle = source ) IS -_-" AAARRRRGRRRRR!! triggerClientEvent(root,"onLock",vehicle)
  23. Then you made a mistake somewhere else. Debug your code using debug lines else I can't help you.
  24. triggerClientEvent( root,-- target "onLock",-- event vehicle -- vehicle = source ) -- this was correct -- addEvent("onLock",true) addEventHandler("onLock",root, function() if isElement(source) then local x,y,z = getElementPosition(source) -- source = vehicle playSound3D("CarAlarmChirp.mp3",x,y,z) end end)
  25. You are writing it and if it is broken you still writing more, so you won't learn a damn about it. So delete all your code and start again, begin with the startTrainJob function. I will help you step by step, but only step by step.
×
×
  • Create New...