Jump to content

Atouk

Members
  • Posts

    221
  • Joined

  • Last visited

Everything posted by Atouk

  1. Atouk

    [Help] Join-Quit

    Works perfect, but how do I remove the color codes?
  2. Hello, I wanted to ask if I have any mistakes. function joinHandler( ) local joinedPlayerName = getPlayerName ( source ) exports["notifications"]:showBox ( source, "info", ..joinedPlayerName.. "Entro al servidor." ) end addEventHandler ( "onPlayerJoin", getRootElement(), joinHandler ) function quitHandler( ) local quitPlayerName = getPlayerName ( source ) exports["notifications"]:showBox ( source, "error", ..quitPlayerName.. "Salio del servidor." ) end addEventHandler ( "onPlayerQuit", getRootElement(), quitHandler ) What I do is that when a player opens the window "notifications" of H5N1 [PL]. The information that will be written: Player name and message. I hope answers, thanks
  3. Thank you very much, hope I have not bothered.
  4. Hi all!, Tell me how to make an area on the map with a color, ayi players not only can be zombies. I hope answers, Thanks.
  5. Thank you very much to all, the script works perfectly.
  6. Hello, I wanted to know if I can say how to open a door with a command and close to the same. I hope answers, thanks.
  7. Hello, I have a question. On some servers, you download everything but the last time and I hope I get crash. Crash: Version = 1.3.1-release-4939.0.000 Time = Tue Feb 12 20:29:44 2013 Module = C:\Archivos de programa\GTA SA\gta_sa.exe Code = 0xC0000005 Offset = 0x003F3A3B EAX=00000008 EBX=1A1FEDA4 ECX=00000420 EDX=0022F54C ESI=0022F55C EDI=00000001 EBP=00000000 ESP=0022F454 EIP=007F3A3B FLG=00210202 CS=001B DS=0023 SS=0023 ES=0023 FS=003B GS=0000 I hope answers, thanks.
  8. What I mean is: When you run this command (/ raspawncars), all unoccupied vehicles must return to their original place in 15 seconds. Forgive me for my English.
  9. I saw on multiple servers using a respawn of vehicles and queiro learn how. Would I could teach something like making a vehicle spawn a command, and when respawnearon say? I hope answers, Thanks.
  10. Many thanks, sorry for the inconvenience.
  11. I wanted to know if you can make a gamemode with: zombies, an infection any HUD (when you attack a zombie infection let it go), that a cure aya (anti virus), and something to get infected just like the T-virus resident evil. I hope answers, thanks.
  12. I want to increase you the number of times you can talk in some time (SPAM), Nose if I understand, but I hope you understand me. Below the script. antiSpam = {} function antiChatSpam() if isTimer(antiSpam[source]) then cancelEvent() outputChatBox("#ffffff"..getPlayerName(source).." #ff6600ha sido muteado -->[Razon #3] ! ( 60 segundos )", getRootElement(), 255, 255, 0,true) setPlayerMuted(source, true) setTimer ( autoUnmute, 60000, 1, source) else antiSpam[source] = setTimer(function(source) antiSpam[source] = nil end, 1000, 1, source) end end addEventHandler("onPlayerChat", root, antiChatSpam) function autoUnmute ( player ) if ( isElement ( player ) and isPlayerMuted ( player ) ) then setPlayerMuted ( player, false ) outputChatBox ("#FFFFFF"..getPlayerName ( player ).." #ff6600ha sido desmuteado !",getRootElement(), 255, 255, 0,true ) end end I hope answers, thanks.
  13. addEventHandler("onClientPlayerDamage", localPlayer, function(attacker, weapon, bodypart, loss) if (attacker and getElementType(attacker) == "player" and weapon == 41 then cancelEvent() if (not isTimer(pause)) then local health = getElementHealth(localPlayer) if (health < 99) then triggerServerEvent("medic:healing", localPlayer, attacker) pause = setTimer(function() end, 1000, 1) end end end end ) I have an error?
  14. Please, I need help of a spray that will give HP to the player where you shoot the spray, and when no one is around, when you are only give HP for you. I hope answers, thanks. skype: Agustin Barbero .
×
×
  • Create New...