-
Posts
88 -
Joined
-
Last visited
-
Days Won
1
Everything posted by Hakan
-
لو تنزلونها هنا احسن عشان يستفيدون غيركم
-
اطرح لنا ملف السيرفر
-
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 )
-
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
-
server side addCommandHandler ( "rsall" , function ( ) for k,v in ipairs ( getResources ( ) ) do if ( getResourceState ( v ) == "Running" ) then restartResource ( v ) end end end ) ;
-
addEventHandler("onClientSoundStream",root,function ( Type , Length ) if ( source == mysound and Type ) then outputChatBox("Length: "..math.floor(Length)) end end)
-
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 ) ; هنا لو الاعب خرج بـ كيك او خرج من نفسه راح يكتب اسمه ووش خرج كيك او من نفسه
-
جرب هذا الكود function onPreFunction( _, _, _, _, _, ... ) local args = { ... } ; if ( #args > 0 and args[1]:find ( "Debes" ) ) then return 'skip' end end addDebugHook( "preFunction", onPreFunction,{"outputChatBox"})
-
@Abdul KariM @#,xiRocKyz
-
فوق الخيال ماشاء الله , استمروا .
-
مالها داعي الي فوق لأن لو السيارة تضررت من صاروخ الاتاكر بيكون بلاير addEventHandler ( "onClientVehicleDamage" , root , function (att) if ( att and isElement ( att ) ) then outputChatBox ( tostring ( getElementType ( att ) ) ) end end )
-
لا انا قلت لك ان الاتاكر يكون 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 ) ;
-
لول انا مسويها من قبل , ليه ماتجرب انت وماتتفلسف واجد الله يهديك .
-
لا الاتاكر راح يكون اللاعب الي طلق الصاروخ
-
حط داتا على صاحب السيارة الي تضررت وخلي القيمة حقتها الـ attacker
-
'onClientVehicleDamage' setElementData 'onPlayerWasted' getElementData outputChatBox
-
اطرح لنا كود يوم اللاعب يخش التيم
-
كان بـ إمكانك كتابة تم حل المشكلة عشان ماينرفع الموضوع
-
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 ) ولو ان عندك بالتيم الواحد اكثر من شخصية اطرح لنا كود يوم اللاعب يخش فـ التيم .