Jump to content

Dev

Members
  • Posts

    127
  • Joined

  • Last visited

Everything posted by Dev

  1. Change the names of the following in ONE of the above mentioned scripts: 1. function attached to the onClientResourceStart event. 2. function attached to the onClientMarkerHit event. 3. Name of table containing the the marker.
  2. Dev

    freecam for race

    exports.freecam:setFreecamDisabled() I fail to find this exported function in the freecam script you gave above, I think you're supposed to be calling: exports.freecam:setPlayerFreecamDisabled()
  3. I believe the problem is that you cannot execute a command which isn't in the .lua file which contains the executeCommandHandler function of yours itself, i.e, the command you're trying to execute is in a separate .lua file.
  4. Hey everyone, So I've been trying to change my nickname from 'Dev.' to 'Dev' via the UCP, but everytime I attempt to do so it gives the following error message: But the problem here is that I searched all the pages in the members' list for nicknames starting from 'D', but I was unable to find any account using this nickname, So just wanna requesting a forum admin to either manually change my nick or tell me what's wrong.
  5. Dev

    Camerastuff

    Just don't copy this code I'm posting, compare it with your last one to learn your mistakes. function setCameraOnPlayerJoin() fadeCamera(source, true, 1); setCameraMatrix(source, -2135.708984375, -187.71142578125, 157.66786193848, 0, 0, 0); end addEventHandler("onPlayerJoin", getRootElement(), setCameraOnPlayerJoin); function setTarget( player ) setCameraTarget( player, player ) end function hereWeGo( res ) for key, value in ipairs ( getElementsByType("player") ) do bindKey( value, "f", "down", setTarget ) end end addEventHandler("onResourceStart", resourceRoot, hereWeGo)
  6. SA:MP! Just kiddin', MTA of course, I know of no other.
  7. You sir, are hilarious.
  8. Grand Theft Auto: San Andreas ftw! but believe this, if MTA was based on GTA IV, and my PC could run it with 50+ FPS, my thoughts would be different.
  9. Dev

    So, why that avatar?

    Bump, this is a pretty nice thread, let's save it from dying.
  10. That script only has a delay time of 1 second, make it 5 or more.
  11. Dev

    EURO 2012

    Ended up to be 2-0.
  12. Dev

    So, why that avatar?

    Amen. Mine is because I'm never able to find out a cool avatar, so I just use what everyone else mostly uses. Adidas.
  13. I like to be safe, alright, looks like this is the one I'm going for! I'd like to thank all of you for providing your suggestions and advice to me regarding this.
  14. I want to know the FPS VintageTorrie, if it is 20-30 then I'm finalizing this laptop and ordering it.
  15. I sold Arsenic Roleplay for nearly $200, but seeing that yours is an edit of vG, I'd say $50 is still too much.
  16. Notepad ++, Can someone link me to the MTA function highlighter?
  17. I actually compared the specifications of both the Laptops on Game-Debate, and to my surprise the Toshiba turned out to be performing better than any of those Asus ones with GTA San Andreas.
  18. Dev

    sql

    True.
  19. I searched a bit on flipkart.com and I found some ASUS Laptops in my budget and they have dedicated graphics, as someone told me they would be much better. Give me your reviews on these: ◆ Asus X53U-SX181D - $345.93 Processor: APU Dual Core ( AMD - C-50 - 1.0 GHz ) Graphic Card: AMD Radeon HD 6250 RAM: 2 GB DDR3 Hard Disk Capacity: 320 GB OS: None. ◆ Asus X43 X43U-VX083D - $350.37 Processor: APU Dual Core ( AMD - C-60 - 1.0 GHz ) Graphic Card: AMD Radeon HD 6250 RAM: 2 GB DDR3 Hard Disk Capacity: 320 GB OS: None. ◆ Asus X Series Asus X53U- SX067D - $345.33 Processor: APU Dual Core ( AMD - C-50 - 1.0 GHz ) Graphic Card: ATI Radeon HD 6250 RAM: 2 GB DDR3 Hard Disk Capacity: 320 GB OS: None.
  20. Dev

    About lines

    Erm, '()' take barely 4 bits. ( 1 byte = 8 bits )
  21. Well yea, I've been told that the performance is pretty low but still even if I am able to get 20-30 FPS due to the RAM and processor playing their role, I'll be one happy man.
  22. Dev

    Codes

    I think he is looking for some kind of anti-abusing system, not anti-flood. Well, it can be achieved by the following code I guess: local badWords = { "f-uck", "noob", "f-aggot", "f-ag", "ass", "s-hit" } -- remove the '-', the forums are replacing the words. addEventHandler("onPlayerChat", root, function( message, messageType ) local message = tostring( message ) local messageType = tonumber( messageType ) if ( messageType ~= 2 ) then -- Not a /me for key, value in ipairs ( badWords ) do if ( string.find( message, tostring( value ) ) ) then outputChatBox("You sir, are foul mouthed.", source, 255, 0, 0) cancelEvent( ) end end end end )
  23. Dev

    MTA Launching error

    This probably has something to do with your GTA SA version not cracked, re-download it from a good t0rr3nt site and re-install, if you have any other problem when trying to launch MTA, then:
×
×
  • Create New...