Jump to content

iPrestege

Members
  • Posts

    10,056
  • Joined

  • Last visited

  • Days Won

    27

Everything posted by iPrestege

  1. ورني اللي حاولت لة
  2. iPrestege

    help

    local car = createVehicle(400,x,y,z) addCommandHandler("color", function() setTimer(function() setVehicleColor(car,math.random( 255 ), math.random( 255 ), math.random( 255 )) end, 500, 0) end ) اكتب باف 8 color وشوف ذذ او function vehicle() local r, g, b = math.random( 255 ), math.random( 255 ), math.random( 255 ) setVehicleColor( car, r, g, b ) end setTimer( vehicle, 500, 0 ) وخلي car local car
  3. Hmmm...use my code up ^ this one : local marker = createMarker (x,y,z, "cylinder", 2, 0, 255, 0, 170 ) addEventHandler("onClientMarkerHit",marker, function ( player ) if ( player == localPlayer ) then guiSetVisible( Window,true ) showCursor( true ) end end )
  4. no you have to use "DxShader" With it .
  5. What you mean ? you mean you wan't to but the GUI Marker in the teleport position? or what the fuc k?
  6. You're Welcome | العفو ذذ #
  7. check if the player = localPlayer and guiSetVisible and ShowCursor . Edit try this : local marker = createMarker (x,y,z, "cylinder", 2, 0, 255, 0, 170 ) addEventHandler("onClientMarkerHit",marker, function ( player ) if ( player == localPlayer ) then guiSetVisible( Window,true ) showCursor( true ) end end )
  8. شيل الكود هذا سطر 400 من fr_server : addEventHandler('onPlayerChat', g_Root, function(msg, type) if type == 0 then cancelEvent() if chatTime[source] and chatTime[source] + tonumber(get("*chat/mainChatDelay")) > getTickCount() then outputChatBox("Stop spamming main chat!", source, 255, 0, 0) return else chatTime[source] = getTickCount() end if get("*chat/blockRepeatMessages") == "true" and lastChatMessage[source] and lastChatMessage[source] == msg then outputChatBox("Stop repeating yourself!", source, 255, 0, 0) return else lastChatMessage[source] = msg end local r, g, b = getPlayerNametagColor(source) outputChatBox(getPlayerName(source) .. ': #FFFFFF' .. msg:gsub('#%x%x%x%x%x%x', ''), g_Root, r, g, b, true) outputServerLog( "CHAT: " .. getPlayerName(source) .. ": " .. msg ) end end )
  9. Try and i'll fix it (; .
  10. وعليكم السلام وش تقصد بـ المشكلة بالشات او وين بالضبطط ذذ #
  11. onClientGUIClick + guiSetVisible + ShowCursor
  12. guiSetVisible showCursor playSound onClientMarkerHit
  13. ابو سرحا ذذ شيك خاص # حمل الملف وبدلة باللي عندك ذذ باللعبه
  14. @ Samer GamerDeMTA Script should work @ GamerDeMTA what's the problem?
  15. الكلنت ستارت أفضل ذذ
  16. لانها جديدة ذذ
  17. guiComboBoxAddItem(comboBox,"الكلام")
  18. واو سيارات؟ وش سيارات ذذ
  19. العفو ذذ @ عناد يبيلها لاي لاعب بس غير name > getPlayerName # ذذ
  20. لول؟ يمكن ضغطت الزر مليون مرة؟
  21. addEvent("on",true) addEventHandler("on",root, function () addEventHandler("onPlayerChat", root, mute) end) addEvent("off",true) addEventHandler("off",root, function () removeEventHandler("onPlayerChat", root, mute) end ) time = 30 timer = {} function mute(msg,type) local find = string.find(msg,getPlayerName(source)) if ( type == 0 and find ) then setPlayerMuted(source,true) outputChatBox("* You Are Muted For " .. time .. " " ,source,255,0,0,true) timer[source] = setTimer(endMute,time * 1000,1,source) end end function endMute(player) setPlayerMuted(player,false) outputChatBox("* You Can Talk Now",player,0,255,0,true) end addEventHandler("onPlayerQuit",root, function () if ( isTimer(timer[source]) ) then killTimer(timer[source]) end end )
×
×
  • Create New...