Jump to content

xXMADEXx

Members
  • Posts

    2,718
  • Joined

  • Last visited

Everything posted by xXMADEXx

  1. Hi guys. Is there somewhere or someone who can tell me what the default Lua blocked functions are? Thanks, just curious.
  2. That is also included in getRealTime(). If you read the argument for it, it'll show you. It provides any type of time you need. Second;Minute;Hour;Day;Month;Year etc..
  3. To make the cars kill someone when it hits them, use: -- Event: onPlayerDamage/onClientPlayerDamage isElement ( ) -- check to see if there was an attacker getElementType ( ) -- check to see if the element was a vehicle killPed ( ) To make the cars roll easier, you'll need to make a custom handling for the vehicle.
  4. Use the function: getRealTime ( )
  5. If you are trying to make a fade effect, i'd recommend using dxDrawImage so that you can just declare the alpha to a variable, and every render you can lower the alpha. Example: local alpha = 255 addEventHandler ( "onClientRender", root, function ( ) dxDrawImage ( 690, 200, 100, "R1.png", 0, 0, 0, tocolor ( 255, 255, 255, alpha ) ) if ( alpha > 25 ) then alpha = alpha - 1 end end )
  6. xXMADEXx

    UDP IS CLOSED

    No, I do not do p2p connections with anyone. There are many tutorials on Youtube that you can use.
  7. xXMADEXx

    UDP IS CLOSED

    The address should be: 192.168.0.1 (If its not, open command prompt and type 'ipconfig' and its the default gateway) If you don't know your login, you need to ask the administrator.
  8. xXMADEXx

    UDP IS CLOSED

    Is that your router? If so and you don't know the login, ask your administrator.
  9. That wouldn't work because 'playerSource' would return a string. Please read the arguments first. https://wiki.multitheftauto.com/wiki/OnPlayerChat @StevyDK: Is this your entire script? If not, post the rest.
  10. xXMADEXx

    UDP IS CLOSED

    You can follow this tutorial.
  11. Is this you entire code? The error could be somewhere else.
  12. Because we don't like thieves.
  13. xXMADEXx

    MTA Won't Start

    http://upload.mtasa.com/u/406837753/gtasa.zip_
  14. xXMADEXx

    arrays

    In Lua they are called tables. local myTable = { { 1, 2, 3 }, { "ready", "set", "go" }, }
  15. You can use: setElementAlpha
  16. xXMADEXx

    MTA Won't Start

    http://pastebin.mtasa.com/137854720 (When I tried to run vcredist_arm.exe it gave me this: http://img823.imageshack.us/img823/8167/ftqd.png)
  17. xXMADEXx

    MTA Won't Start

    Hi. I just installed MTA, and the first time it started up just fine. Then, I changed my resolution and now it'll only show the "[stop Playing With Yourself]" page and then close. I tried to run MTADiag but I get this error:
  18. xXMADEXx

    Drivers

    k, thank you
  19. xXMADEXx

    Drivers

    Thanks tow, but I just decided to install windows 8 too much things much easier.
  20. EH? Reinstall? can you explain please? Not sure if he read the entire message..
×
×
  • Create New...