Jump to content

Hakan

Members
  • Posts

    88
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Hakan

  1. لو تنزلونها هنا احسن عشان يستفيدون غيركم
  2. اطرح لنا ملف السيرفر
  3. Hakan

    help

    bindKey ( "f1" , "down", function ( ) if ( getPlayerTeam ( localPlayer ) and getTeamName ( getPlayerTeam ( localPlayer ) ) == "TeamName" ) then -- your code else outputChatBox ( "You can't use this.",255,0,0,true) end end )
  4. Hakan

    Countdown234

    local sx,sy = guiGetScreenSize ( ) ; addEventHandler ( "onClientRender" , root , function ( ) if ( isTimer ( countdown ) ) then local seconds = math.floor ( getTimerDetails ( countdown ) / 1000 ) ; dxDrawText ( tostring ( seconds ) , 0 , 0 , sx , sy , tocolor ( 255 , 255 , 255 , 200 ) , 2 , "default-bold" , "center","center" ) end end ) جرب هذا الكود بشرط ان التايمر يكون بجانب الكلنت واسم التايمر countdown
  5. server side addCommandHandler ( "rsall" , function ( ) for k,v in ipairs ( getResources ( ) ) do if ( getResourceState ( v ) == "Running" ) then restartResource ( v ) end end end ) ;
  6. addEventHandler("onClientSoundStream",root,function ( Type , Length ) if ( source == mysound and Type ) then outputChatBox("Length: "..math.floor(Length)) end end)
  7. addEventHandler ( "onPlayerQuit" , root , function ( Type ) if ( Type == "Quit" or Type == "Kicked" ) then outputChatBox(getPlayerName(source).."#ffffff left ( "..tostring(Type).." )",root,255,255,255,true) end end ) ; هنا لو الاعب خرج بـ كيك او خرج من نفسه راح يكتب اسمه ووش خرج كيك او من نفسه
  8. جرب هذا الكود function onPreFunction( _, _, _, _, _, ... ) local args = { ... } ; if ( #args > 0 and args[1]:find ( "Debes" ) ) then return 'skip' end end addDebugHook( "preFunction", onPreFunction,{"outputChatBox"})
  9. Hakan

    كود

    ايوة اعرف بس كنت احسب ان لو استخدم addDebugHook واستخدمت return 'skip' انه يكنسل بس تأكدت , يعطيك العافية
  10. Hakan

    كود

    يقدر يوقف حدث الموت بـ استخدم preEvent .
  11. Hakan

    كود

    @HassoN يقدر بـ إستخدام addDebugHook
  12. فوق الخيال ماشاء الله , استمروا .
  13. مالها داعي الي فوق لأن لو السيارة تضررت من صاروخ الاتاكر بيكون بلاير addEventHandler ( "onClientVehicleDamage" , root , function (att) if ( att and isElement ( att ) ) then outputChatBox ( tostring ( getElementType ( att ) ) ) end end )
  14. لا انا قلت لك ان الاتاكر يكون player وانت مسوي تحقق انه يكون سيارة -- Client addEventHandler ( "onClientVehicleDamage" , root , function (att) if ( att and isElement ( att ) and getElementType ( att ) == "player" and getVehicleController(source) ~= att ) then setElementData ( getVehicleController ( source ) , "killedBy" , getPlayerName ( att ) ) end end ) -- Server addEventHandler ( "onPlayerWasted" , root , function ( ) if ( getElementData ( source , "killedBy" ) ) then outputChatBox(getPlayerName(source).." Killed By "..tostring(getElementData(source,"killedBy"))) removeElementData ( source , "killedBy" ) end end ) ;
  15. لول انا مسويها من قبل , ليه ماتجرب انت وماتتفلسف واجد الله يهديك .
  16. لا الاتاكر راح يكون اللاعب الي طلق الصاروخ
  17. حط داتا على صاحب السيارة الي تضررت وخلي القيمة حقتها الـ attacker
  18. 'onClientVehicleDamage' setElementData 'onPlayerWasted' getElementData outputChatBox
  19. اطرح لنا كود يوم اللاعب يخش التيم
  20. كان بـ إمكانك كتابة تم حل المشكلة عشان ماينرفع الموضوع
  21. local Teams = { -- [ ' teamname ' ] = idskin, ['Police'] = 20, } addEventHandler ( "onPlayerWasted" , root , function ( ) local team = getPlayerTeam ( source ) ; if ( team and Teams [ getTeamName ( team ) ] ) then setTimer(setElementModel,1000,1,source,Teams[getTeamName ( team )]) end end ) ولو ان عندك بالتيم الواحد اكثر من شخصية اطرح لنا كود يوم اللاعب يخش فـ التيم .
×
×
  • Create New...