Jump to content

killeryoyo

Members
  • Posts

    137
  • Joined

  • Last visited

Everything posted by killeryoyo

  1. Hello People, i have found the biggest solution that can work now! try the free VPN https://www.hotspotshield.com/. it made all my online games work. it's a great VPN with no Limited time or download. I want to see the comments after using it . Regards, killeryoyo
  2. maybe you can use this setSoundVolume or maybe pausing it when the resource starts setSoundPaused
  3. Thank you, but one question i wanted to ask all this time. Why are you giving your scripts like that open source, isnt that the scripts you worked so hard to make it with the developers?. Anyways thanks for the open source. I know you want to help other people,but those scripts are worth buying i think . best Regards, killeryoyo
  4. i had this problem long ago from 2 years, then i formatted my pc because of a virus and then tried mta again and i saw it worked 100% perfect without that bug
  5. Here is the solution that worked with me 100% without any problems. First thing, call your ISP and tell them you want to reset your router. Follow his steps carefully till he finishes and be sure your network is working. Second thing, Uninstall mta:sa completely after resetting your router. Uninstall with all its resources and things. Third thing, Install a fresh copy of MTA:SA from that website. https://www.multitheftauto.com/ Fourth thing, make sure you installed it completely good, and then run mta as adminstrator. It should work normally now. in the first few connections you will see timed out, but after them you will play happy ever after. Good luck, i wish i helped you with this, best Regards, killeryoyo
  6. you can trust @Mega9 then because he is the most trusted and clean coder ik. he is offering scripts/scripting for RPG you can see his offer https://forum.multitheftauto.com/viewtopic.php?f=108&t=79602
  7. Contact @Revolt he got good RPG scripts and any resource you want he can script it. Here is his Topic to see his work. Good luck! https://forum.multitheftauto.com/viewtopic.php?f=108&t=95241
  8. those are the mta fonts that you can use. "default": Tahoma "default-bold": Tahoma Bold "clear": Verdana "arial": Arial "sans": Microsoft Sans Serif "pricedown": Pricedown (GTA's theme text) "bankgothic": Bank Gothic Medium "diploma": Diploma Regular "beckett": Beckett Regular Good luck!
  9. Did you try to use getlocalplayer? Like this an example. function flashRed ( ) -- fade out the local player's camera to red during a second fadeCamera( false, 1.0, 255, 0, 0 ) -- set a 500 ms (0.5 sec) timer to fade it back in before it has completely faded out setTimer( fadeCamera, 500, 1, true, 1.0 ) end -- we attach our 'flashRed' function to be a handler of "onClientPlayerDamage" when its source (that is, the hit player) is the local player addEventHandler( "onClientPlayerDamage", getLocalPlayer ( ), flashRed ) Getlocal player is used to get the player who did the command.
  10. Msearch for it by yourself in map editor, we won't search for ya
  11. What do you want to view? If u want to change camera view you can use this. set the player's camera to a fixed position, looking at a fixed point setCameraMatrix Or this one setCameraTarget That's what I understood fro! You.
  12. type: The type of this resource, that can be "gamemode", "script", "map" or "misc". You should put the type on map in the meta to make it load, if u didn't understand, you could see in wiki pedia. https://wiki.multitheftauto.com/wiki/Meta.xml
  13. are they the same people or you tried to make another people enter?
  14. can't you at least show us the script that has the problem,so we can solve it. Try to reinstall the Admin and Mapmananger resource.
  15. well im Te Data to and i have the same problem, but sometimes it gets solved by itself, but most the time i can connect but with high ping. i contacted the ISP and i reseted my network settings and still the problem is there. since 1.5.1 and the problem started appearing. MTADiag doesn't do anything except giving me a update to do. When i do the update the game keeps crashing everytime i try to launch it. So the problem is in MTA itself, there is a conflict between Te Data network and mta. No one knows where is the problem, but MTA knows where. i really getting rekt to see my ping 100 again. When i join the game i see my ping normally 100 then after 5-10 secs it bumps out 1k. Thank you, Best Regards, killeryoyo
  16. try deleting all mta with its resources and downloading a new mta setup from this forums. Tell us what happens after this. it solved my problem.
  17. well you can help the people in the scripting section, because it has alot of problems there. better than adverting that you are a free lua scripter + show some of your own work, if you are a LUA scripter.
  18. well, they aren't ignoring, of course they are busy in their real life situations, they won't be online 24 hours for helping only. and btw try installing the latest version of MTA by Download MtaDiag.
  19. i made mtadiag, and it gave me that link https://pastebin.mtasa.com/332562199 it told me to update the latest version of mta sa. now the game is crashing, it doesn't work at all.
  20. Hello guys, i have a problem in connecting to certain servers. For example if i connect to Saes or Saur, i can work normally. when i join my own bought server. i keep timing out in every 10 secs. what is happening, can someone help? thanks in advance
  21. there is always a big problem in syncing the trailers. you can see it attached well in your truck and other players can see it flying and out of truck far away. did anyone solve that problem till now?
  22. I think it's not possible it's possible i think, because they did it with the skins once in a server.
  23. maybe we can use this setElementFrozen ? when the player presses the hand brake. the element gets frozen and no one can push? .
  24. local x,y,z = 2096.3, 1721, 12.7 local easing = "OutBounce" local time = 2000 local gate = createObject(980, x,y,z, 0, 0, 63) local marker = createMarker(x,y,z, "cylinder", 12, 0, 0, 0, 0) function moveGate(hitPlayer, matchingDimension) moveObject(gate, time, x+4.9, y+9.6, z, 0, 0, 0, easing) end addEventHandler("onMarkerHit", marker, moveGate) function moveBack() moveObject(gate, time, x, y, z, 0, 0, 0, easing) end addEventHandler("onMarkerLeave", marker, moveBack) This is a example of a moving gate, when the player hits the marker. the object moves. This is the main thing you can use to move a object. moveObject. Good luck.
×
×
  • Create New...