
GamerDeMTA
Members-
Posts
559 -
Joined
-
Last visited
Everything posted by GamerDeMTA
-
Can I unite Resource PLAY with Freeroam in one resource?
GamerDeMTA replied to GamerDeMTA's topic in Scripting
But the play gamemode meta says "include resource freeroam", so freeroam isn't a gamemode, or is it? -
Only the player, what I must change?
-
This will work? SERVER addEventHandler("onClientPlayerWasted", root, triggerClientEvent ("Client",root) end end) CLIENT function ClientSide() playSound ("no.mp3") end addEvent("Client",true, ClientSide ) addEventHandler("Client",root, ClientSide )
-
I need to put a sound when a player die, can someone help me?
-
How to put an image in a corner of the screen and do this?
GamerDeMTA replied to GamerDeMTA's topic in Scripting
With GUI, if not tell me If i can with dx -
Can I?
-
How to put an image in a corner of the screen and do this?
GamerDeMTA replied to GamerDeMTA's topic in Scripting
I can use a GIF¿ -
How to put an image in a corner of the screen and do this?
GamerDeMTA replied to GamerDeMTA's topic in Scripting
Yeah I mean that -
I want to put an image in the right corner of the screen, also I want to Create a Clan
-
ah Thanks and you know if I can do this? When a player is very near of 1 object It gives a weapon
-
Put a video when a player joins in the server (like an intro).
-
and markers replacing is stable? can say me stable things to replace textures? My idea is to put my texture and when u hit that u get a weapon
-
and how to replace a Pickup Texture?
-
Thanks It works! Ah, you know how to give someone a weapon when he hit a life pickup?
-
Like In SAUR Utopia when you join, you must wait 30 seconds for read the rules. I want that for my GUI , i
-
hey I've a problem with this, I want to put a fighting style to the players when they join but sometimes there is the fights tyle and sometimes no. addEventHandler ( 'onPlayerJoin', root, function ( ) setPedFightingStyle ( source, 6 ) end ) Also that script for change damage doesn't work with BRASS KNUCKLES local damage = setWeaponProperty(1, "poor", "damage", 14) local damage = setWeaponProperty(1, "std", "damage", 14) local damage = setWeaponProperty(1, "pro", "damage", 14) end
-
and If I'm not using play how to give weapons to the players when they join and respawn?
-
Don't works Can someone say me If the BRASS KNUCKLES [2] will work? and also give me a script for give weapons to players when they join the servers and spawn, I want to give him BRASS KNUCKLES when they Join / Respawn
-
local damage = setWeaponProperty(0, "poor", "damage", 14) local damage = setWeaponProperty(0, "std", "damage", 14) local damage = setWeaponProperty(0, "pro", "damage", 14) end Is for do FIST more damage. I PUT IT AS CLIENT OR SERVER?
-
How to recuperate health each 1 min? Help Script
GamerDeMTA replied to GamerDeMTA's topic in Scripting
This will work? and is client or server? -
Well I want to do this: A player recuperates health each 1 min.
-
local spawnpoint addEventHandler("onResourceStart", resourceRoot, function() spawnpoint = getRandomSpawnPoint() resetMapInfo() for i,player in ipairs(getElementsByType("player")) do spawn(player) end end ) function spawn(player) if not isElement(player) then return end if get("spawnreset") == "onSpawn" then spawnpoint = getRandomSpawnPoint() end exports.spawnmanager:spawnPlayerAtSpawnpoint(player,spawnpoint,false) repeat until setElementModel(player,math.random(312)) fadeCamera(player, true) setCameraTarget(player, player) showChat(player, true) end function getRandomSpawnPoint () local spawnpoints = getElementsByType("spawnpoint") return spawnpoints[math.random(1,#spawnpoints)] end addEventHandler("onPlayerJoin", root, function() spawn(source) end ) addEventHandler("onPlayerQuit",root, function () if getPlayerCount() == 1 and get("spawnreset") == "onServerEmpty" then spawnpoint = getRandomSpawnPoint() end end ) addEventHandler("onPlayerWasted", root, function() setTimer(spawn, 1800, 1, source) end )
-
How to put an image when a player has for example 10 of heal
GamerDeMTA replied to GamerDeMTA's topic in Scripting
can give me The full code? I dont know about this, -
How to put an image when a player has for example 10 of heal
GamerDeMTA replied to GamerDeMTA's topic in Scripting
and if i want to `put my own image?