peane
Members-
Posts
24 -
Joined
-
Last visited
Everything posted by peane
-
it sounds more that he hacked your FTP or linux server or something like that...
-
noone?? (( and MTA IRC does not working... ((( irc.multitheftauto.com/mta (((
-
"I believe there is a -serial switch for Multi Theft Auto.exe to output your serial." thats exacly what I need... But did not work
-
THX very much... I dont want to change serial.. just wanna READ serial... if the server can get user serial I have to be able to get it too...
-
yes.. and for GTA SA?? that important for me.. And in anywhere stored users MTA serial???
-
my program will be used by a lot of people... I need to know the MTA installation directoty.. it may be installed anywhere.... My program written in c# has to get the location itself.... UNDERSTAND??? ....
-
not true at all... some people are making HW lags (problem in Race - DD) so i am monitoring cpu usage by MTA and total cpu usage ald a lot of more....
-
omg..thx.... I am developing a small anticheat program.. IS THE PATCH STORED IN REGISTRY??? I vave messed up registry with MTA installations in varous locations so I am asking for help.... It may be installed in "c:/pornography" .... I wanna get the location from registry...
-
Hello, are GTA SA and MTASA installation directory stored in registry? (because of various types of installation: STEAM install, DVD install, ...) where pls thx for help
-
OMG I u did not get the idea of this app... never mind, sorry for posting this.. sorry for beeing part of MTA community...
-
ok, so dont use it pls
-
Hi, I have just finished my 1st release of my external server browser. It has autoupdater so as I release update you will receive it. I hope you will enjoy it (sry for my english) TODO: async data loading favourite servers fix bugs website DOWNLOAD NOTICE: you need Microsoft .NET Framework 4 http://go.microsoft.com/fwlink/?LinkID=186913
-
hi, in CServerList.h file (./MTA10/core) is line with #define SERVER_LIST_MASTER_URL "http://1mgg.com/affil/mta-1.0" I have studied the source code of mtasablue but with no success.. I wanna get the list of all serverrs... Is it this url http://1mgg.com/affil/mta-1.0 ?? Compressed XML or what format? thx
-
// Master server list URL #define SERVER_LIST_MASTER_URL "http://1mgg.com/affil/mta-1.0" http://code.google.com/p/mtasa-blue/sou ... t.h?r=2040
-
http://1mgg.com/affil/mta-1.0 how to parse this? what format? thx for help
-
I need this list: http://www.game-monitor.com/search.php?game=mta in XML or JSON or somethink
-
I wanna xml or some list of all MTASA servers... Are all servers on game-monitor.com ?? How to get the list? Have I to parse HTML?
-
Itsn all about http://int64.org/docs/gamestat-protocols/ase.html ...problem solved
-
It was told to me that only way to comunicate with server externaly is to export some lua func in my rerource. But www.game-monitor.com can show player list and ping... how? Is there some protocol to comunicate with MTA server? thx
-
THX for all replies issue is now fixed... It was all about bindKey..... instead of DOWN I have to use UP.....
-
I made this. But there is a problem... I have to push fire key really frequently and my Hunter fire jtst sometimes.... (not regulary after one second...) Am I doing something wrong? colored code: http://pastebin.com/b4WJ1TBU local firetime = 1000 local canfire = true function reloadVehicleGuns() if (canfire == false) then outputChatBox ( "Primary gun reloaded!") end canfire = true toggleControl ( "vehicle_fire", true ) end local myTimer = setTimer (reloadVehicleGuns, firetime, 0 ) function vehicleWeaponFire(key, keyState) local vehModel = getElementModel(getPedOccupiedVehicle(getLocalPlayer())) if (vehModel == 425) then if (canfire == true) then canfire = false outputChatBox ( "Primary weapon released!") resetTimer(myTimer) toggleControl ( "vehicle_fire", false ) end end end bindKey("vehicle_fire", "down", vehicleWeaponFire)
-
Hi i am beginner in scripting so pls be patient with me... I need to reduce vehicle fire rate to one time per second. I have studied wiki but without success. https://wiki.multitheftauto.com/wiki/OnVehicleWeaponFire, https://wiki.multitheftauto.com/wiki/CancelEvent, etc... thx for help
-
hello i have a question... I wanna access all server functions ( https://wiki.multitheftauto.com/wiki/Ser ... _Functions ) from SDK but through SDK I can call only LUA functions... so is there a LUA library with all server functions prepared for external use/calling?? thx sorry i am newbie in LUA and MTA
