Jump to content

Blaawee

Members
  • Posts

    857
  • Joined

  • Last visited

Everything posted by Blaawee

  1. Solidsnake14 i'don't want a script to hide my name ,i'm just asking is there any way without scripting ???
  2. wrong wrong wrong wrong and not visible and i can be visible with command "ap " what i mean is there any way to make no one see my name and my health bar in freeroam Gamemode :@
  3. LOOOOOOOL :@ setPlayerNametagShowing where i have to try it tell me if i'm not admin ???
  4. miss understood That's not what i meean :@ i mean is there any way to hide my name and health Bar , like glitch
  5. what about to make it with command ?
  6. Realy Nice TAPL how did you do it
  7. no! i didn't mean that , i mean like this : and radar Blips attaching to him like this :
  8. hi guys i see in some servers admin can hide his name and his health bar but i don't know how , can some one tell me how ? is it a script or including the admin resource, or it's a command ?
  9. Blaawee

    need help

    what did you mess
  10. it's in you server config at this line : <!-- This parameter specifies whether or not to enable player voice chat in-game Values: 0 - disabled , 1 - enabled --> <voice>0</voice> <!-- This parameter specifies the sample rate for voice chat. 'voice' parameter must be set to 1 for this to be effective. Higher settings use more bandwidth and increase the sampling quality of voice chat Values: 0 - Narrowband (8kHz), 1 - Wideband (16kHz), 2 - Ultrawideband (32kHz). Default - 1 --> <voice_samplerate>1</voice_samplerate> <!-- This parameter specifies the voice quality for voice chat. 'voice' parameter must be set to 1 for this to be effective. Higher settings use more bandwidth and increase the the overall quality of voice chat Available range: 0 to 10. Default - 4 --> <voice_quality>4</voice_quality> <!-- Specifies the voice bitrate, in bps. This optional parameter overrides the previous two settings. If not set, MTA handles this automatically. Use with care. --> <!-- <voice_bitrate>24600</voice_bitrate> --> or i think in voice resource try to download the newest version
  11. Blaawee

    need help

    Solidsnake14 it's work thx
  12. Blaawee

    need help

    EDIT : ops My Bad i didn't copy the last end) thx soildsnake i make some change
  13. Blaawee

    need help

    Solidsnake14 i'v try your code and nothing show i used debug and it say's line 15 in client side here is photo
  14. Blaawee

    need help

    those all lines i want it right? : local WORLD_OFFSET = 0.4 local BONE_ID = 8 addEventHandler ( "onClientRender", root, function() local color = tocolor(getPlayerNametagColor ( player )) local headX,headY,headZ = getPedBonePosition(player,BONE_ID) headZ = headZ + WORLD_OFFSET local absX,absY = getScreenFromWorldPosition ( headX,headY,headZ ) if not absX or not absY then break end local camX,camY,camZ = getCameraMatrix() if not isLineOfSightClear ( camX, camY, camZ, headX, headY, headZ, true, false, false, true, false, true, false, player ) then break end dxDrawVoice ( absX, absY, color, getDistanceBetweenPoints3D(camX, camY, camZ, headX, headY, headZ) ) break end end end )
  15. Blaawee

    need help

    how i have to attach it the admin's Head
  16. Blaawee

    need help

    hi all , all i wan't to do draw text only on admins head i made this but not shure local screenWidth, screenHeight = guiGetScreenSize() local name = getPlayerName() function createText ( ) if isObjectInACLGroup ( "user." .. playerName, aclGetGroup ( "Admin" ) ) then dxDrawText( "Admin"..tostring(name), 44, screenHeight-43, screenWidth, screenHeight, tocolor ( 0, 255, 0, 255 ), 1, "pricedown" ) end addEventHandler("onPlayerLogin",root, createText)
  17. client side: addEventHandler("onClientResourceStart",resourceRoot, function () txd = engineLoadTXD ( "youe txd.txd" ) engineImportTXD ( txd, 336 ) -- here the weapon Model ID dff = engineLoadDFF ( "your dff.dff", 0 ) engineReplaceModel ( dff, 336 ) -- here the weapon Model ID end) https://wiki.multitheftauto.com/wiki/Weapons meta.xml "Replacing a weapon"> "your txd.txd"> "your dff.dff">
  18. Blaawee

    need help

    soildsnake i realy want to learn let's do it what if i put local screen size like [voice] and put the shadow
  19. Blaawee

    need help

    i got another qustion can i draw dxdrawtxt on only admin head ?
  20. جرب هذا وشف التيم شغال ولا لا ولا تنسى تضيفه في قروب الادمن
  21. Blaawee

    need help

    Now i got it :@ thx Solidsnake
  22. Blaawee

    need help

    Client Side : ip1 = guiCreateLabel(0.02,0.62,0.94,0.92,"your ip : ",true,tab1) guiLabelSetColor (ip1,255,255,0,220) guiSetFont(ip1,"default-bold-small") triggerServerEvent("ip", getLocalPlayer()) ping1 = guiCreateLabel(0.02,0.55,0.94,0.92,"your ping : "..tostring(getPlayerPing(localPlayer)),true,tab1) guiLabelSetColor (ping1,255,255,0,220) guiSetFont(ping1,"default-bold-small") theSerial = getPlayerSerial( thePlayer ) serial1 = guiCreateLabel(0.02,0.68,0.94,0.92,"your serial : "..tostring(getPlayerSerial()),true,tab1) guiLabelSetColor (serial1,255,255,0,220) guiSetFont(serial1,"default-bold-small") name1 = guiCreateLabel(0.02,0.82,0.94,0.92," username : ",true,tab1) guiLabelSetColor (name1,0,255,0,220) guiSetFont(name1,"default-bold-small") theTeam = getPlayerTeam( localPlayer ) if theTeam then teamName = getTeamName(theTeam) else teamName = "N/A" end yourteam = guiCreateLabel(0.02,0.88,0.94,0.92,"yourTeam :"..tostring(teamName),true,tab1) guiLabelSetColor (yourteam,0,255,0,220) guiSetFont(yourteam,"default-bold-small") Server Side: function ip1( thePlayer ) pIP = getPlayerIP(thePlayer) end addEvent("ip") addEventHandler("ip", root, ip1) I edit it *
  23. Blaawee

    need help

    Why Client i'm confused now :@
  24. Blaawee

    need help

    Client Side : ip1 = guiCreateLabel(0.02,0.62,0.94,0.92,"your ip : ",true,tab1) guiLabelSetColor (ip1,255,255,0,220) guiSetFont(ip1,"default-bold-small") triggerServerEvent("ip", getPlayerIP()) ping1 = guiCreateLabel(0.02,0.55,0.94,0.92,"your ping : "..tostring(getPlayerPing(localPlayer)),true,tab1) guiLabelSetColor (ping1,255,255,0,220) guiSetFont(ping1,"default-bold-small") theSerial = getPlayerSerial( thePlayer ) serial1 = guiCreateLabel(0.02,0.68,0.94,0.92,"your serial : "..tostring(getPlayerSerial()),true,tab1) guiLabelSetColor (serial1,255,255,0,220) guiSetFont(serial1,"default-bold-small") name1 = guiCreateLabel(0.02,0.82,0.94,0.92," username : ",true,tab1) guiLabelSetColor (name1,0,255,0,220) guiSetFont(name1,"default-bold-small") theTeam = getPlayerTeam( localPlayer ) if theTeam then teamName = getTeamName(theTeam) else teamName = "N/A" end yourteam = guiCreateLabel(0.02,0.88,0.94,0.92,"yourTeam :"..tostring(teamName),true,tab1) guiLabelSetColor (yourteam,0,255,0,220) guiSetFont(yourteam,"default-bold-small") Server Side: function ip1( thePlayer ) getPlayerIP = (thePlayer) end addEvent("ip") addEventHandler("ip", root, ip1) Like This ?
×
×
  • Create New...