Jump to content

Taalasmaa

Members
  • Posts

    197
  • Joined

  • Last visited

Everything posted by Taalasmaa

  1. Lol ok faggots this is far away from "noobish script" You will see the fucking airbrake detection when I release this. Secondly, I can make a video right now about airbrake detection, if you want? Thirdly, should I better keep this as closed source only in my server if you guys are so uncertains. EDIT FUNTIONS WHAT I USED IN AIRBRAKE: getElementPosition getElementVelocity getTickCount getDistanceBetweenPoints3D onClientRender These functions I used while i built my airbraking detection Trust me, i've made very popular RP mode for MTA too.
  2. With the functions I made, ofc. What do you think.. Maybe I detect it as cheating by calling magic man who comes and tell me if he cheats -.-
  3. Nothing. It kicks only if you are cheating.
  4. ... What is the point of "compiling so good that you can't really take functions from it", if you're going to make it open-source? Uh, wow, so? Btw: double-post. So players can't stole parts of it or edit it. Players are still able to edit such a thing like Weapon ID's.. They dont need to edit it
  5. Care to explain why this is necessary? For as far as I am concerned, hacked weapons aren't even synced. s0beit
  6. Files are compiled so good that you cant really take functions from this script And yes this will be open source.
  7. Hello! Now i'm going to release A BIIIIIIIIIIIIIIIG AND GOOOOOOD SCRIPT! Anticheat! It detects: Flying vehicles, Weapon hacks (Weapon ID's can be changed from array file), Airbrakes (Player airbrake and Vehicle airbrake), Vehicle speeds, + Flood chat system! This awesome script will be released TODAY. What detections you'd like to see in it? Be sure to give your opinion and comment! Don't afraid to post ideas! Regards Taalasmaa
  8. Taalasmaa

    Help

    More specifically? All what you need to build it.. Don't except us to write it for you. Example: function resourseStart() setElementData(player,"XP","0") -- this timer would give XP +1 for you every second. setTimer(myFunc,1000,0) end addEventHandler("onResourceStart",getResourceRootElement(getThisResource()),resourceStart) your timer function example: function myFunc() xp = getElementData(player,"XP") setElementData(player,"XP",tostring(xp+1)) and so on.. You can get your XP Data with getElementData These are JUST examples, how it should work.. These will not work straightly, you need to mix them and so on.
  9. That is bugged house system.
  10. Taalasmaa

    Help

    You can use such functions like: setElementData getElementData setTimer and so on.
  11. Of course you dont see.. Resource is WIP and classes will be released in release version. The datas will be stored to mta accounts. Mhm..maybe you should swap to SQL or MySQL. It´s working much faster than storing everything in a Stylesheet and the Mta Server wont lose CPU for storing/requesting data indeed Good luck mate Thank you, but I have no idea how SQL works I'm pro in storing the datas to mta accounts, but i've never learned SQL.
  12. Of course you dont see.. Resource is WIP and classes will be released in release version. The datas will be stored to mta accounts.
  13. Maybe the login system has an automatic kicker, so it will kick everybody who types the password too many times wrong in a row.
  14. Yes, that's right. And it will be much more easier for newbies.
  15. Taalasmaa

    need help

    Oh, sorry i looked that COOKIE2 wrote that Sorry karlis.
  16. Hello, MTA Community. What's the vehicle plate function name. I did not find it in wiki. Thanks Regards Taalasmaa
  17. Taalasmaa

    gui???

    Nope, anyone wont help you anymore, after what have you done.
  18. Taalasmaa

    need help

    Script took from MTA Wiki, which is in that resource.
  19. Well not classes, but libraries.. These makes yhe Data storing much easier for newbies
  20. create myGate = createObject(myID, 1485.0126953125, -2474.8330078125, 15.328079223633, 0, 0, myROTATION)
  21. No -.- But these examples are EXAMPLES HOW TO USE THE CLASSES WHAT I MADE!
  22. Hello, I started to work with mta account libraries. Now everybody can store datas so easily. The script is automated storage system, players can save their datas maybe too easily. Very good for newbies. So basically, it just storage your datas automatically: Some examples how to use classes: Example1: function quitData(player) storeQuitData(player,"money") -- or -- storeQuitData(player,"wanted") -- or -- storeQuitData(player,"weapons") end addEventHandler("onPlayerQuit",getRootElement(),quitData) Example2: function cmd1(player) storeCommandData(player,"money") end addCommandHandler("storeMyMoney",cmd1) Example3: function loginData(player) loadLoginData(player,"money") -- automatically sets the player money! -- end addEventHandler("onPlayerLogin",getRootElement(),loginData) The script is still work in progress. Leave a comment if you want to give some ideas etc. Hope you like it Regards Taalasmaa
×
×
  • Create New...