-
Posts
4,429 -
Joined
-
Last visited
Everything posted by #DRAGON!FIRE
-
لمن يسجل خله يحط له سؤال امان مثلأ ويحفظه ع قاعدة البيانات و لمن ينسى باسوردهـ يجيه السؤال وهو يحط الاجابة عليه ولو صحيحة يقدر يغيرهـ
-
استخدم الاكاونت داتا اذا تبي يحفظ اذا انه ما يرسل تريقر للاعب ذا ولو ما تبي يحفظه استخدم الداتا setAccountData or setElementData
-
عشان نقدر نشوف الكود lua ما فهمت وبعدين رجاء استخدم ؟ showToPlayer الان انت قصدك تبي توقف ارسال التريقر اللي اسمه ومتى تبي توقفه ؟ ولا تبي تشيله نهائيا يعني ! ؟
-
ع حسب .. عدلت الكود كان في خطا بسيط من العجلة .
-
عدلت الكود انسخه مرة ثانية .
-
يضيفك ف اللستة ؟
-
ما جربته : addEventHandler ( 'onClientGUIClick', resourceRoot, function () if ( source == CheckBox ) then triggerServerEvent ( 'addMe_DeleteMe', localPlayer, getPlayerName ( localPlayer ) ) end end ) addEvent ( 'Suppport', true ) addEventHandler ( 'Suppport', root, function ( PlrName ) if not Roww then Roww = guiGridListAddRow(SupportList) guiGridListSetItemText ( SupportList, Roww , 1, " "..PlrName.." ", false, false ) else guiGridListRemoveRow ( SupportList, Roww ) end end ) addEvent ( 'addMe_DeleteMe', true ) addEventHandler( 'addMe_DeleteMe', root, function ( plrName ) triggerClientEvent(root,'Suppport',root,plrName) end )
-
العفو حبيبي ^
-
يعني لمن اللاعب يحط صح ع الشيك بوكس ينضاف اسمه فقط في اللستة ولما يشيل الصح يحذف اسمه من اللستة ؟
-
addEventHandler("onClientGUIClick", root, function () local sound = guiGridListGetItemData ( soundGrid , guiGridListGetSelectedItem ( soundGrid ) , 1 ) if( source == Start ) then if ( guiGridListGetSelectedItem ( soundGrid ) ~= -1 ) then if ( isElement ( sound3d ) ) then destroyElement ( sound3d ) end sound3d = playSound3D ( sound , 487.78116, -4.62287, 1002.07813 ) setSoundMaxDistance( sound3d, 400 ) end elseif ( source == Pause ) then if ( isElement ( sound3d ) ) then if ( guiGridListGetSelectedItem ( soundGrid ) ~= -1 ) then if ( isSoundPaused ( sound3d ) ) then setSoundPaused( sound3d, false ) else setSoundPaused( sound3d, true) end end end end )
-
الان تقول اذا حدد يضهر اسمه من وين يحدد اسمه اصلا ؟ وانت قاعد تجيب كل اللاعبين .. وضح اكثر
-
ببساطة حط بدال ترو بالتحقق اللي هو اذا محدد فلس واستخدم : guiGridListRemoveRow
-
function getTime( ) local time = getRealTime( ) local h = time.hour local m = time.minute local s = time.second local y = time.year+1900 local m = time.month local d = time.monthday return y.."-"..m.."-"..d.." "..(h % 12 and h % 12 or 12)..":"..(m < 10 and "0"..m or m)..":"..s.." "..(h >= 12 and "PM" or "AM") end TIME = guiCreateLabel(711, 141, 140, 40, "", false) addEventHandler("onClientRender",root,function() local time = getTime() guiSetText(TIME,"["..tostring(time).."]") end)
-
addEventHandler("onClientGUIClick", root, function () local sound = guiGridListGetItemData ( soundGrid , guiGridListGetSelectedItem ( soundGrid ) , 1 ) if( source == Start ) then if ( guiGridListGetSelectedItem ( soundGrid ) ~= -1 ) then sound3d = playSound3D ( sound , 487.78116, -4.62287, 1002.07813 ) setSoundMaxDistance( sound3d, 400 ) end elseif ( source == Pause ) then if ( isElement ( sound3d ) ) then if ( guiGridListGetSelectedItem ( soundGrid ) ~= -1 ) then if ( isSoundPaused ( sound3d ) ) then setSoundPaused( sound3d, false ) else setSoundPaused( sound3d, true) end end end end )
-
function getTime( ) local time = getRealTime( ) local h = time.hour local m = time.minute local s = time.second local y = time.year local m = time.month local d = time.monthday return y.."-"..m.."-"..d.." "..(h % 12 and h % 12 or 12)..":"..(m < 10 and "0"..m or m)..":"..s.." "..(h >= 12 and "PM" or "AM") end TIME = guiCreateLabel(711, 141, 140, 40, "", false) addEventHandler("onClientRender",root,function() local time = getTime() guiSetText(TIME,"["..tostring(time).."]") end)
-
sound = المفروض يكون حق متغير الاغنية اقصد كذا sound = playSound ( ... ) elseif ( source == Pause ) then if ( guiGridListGetSelectedItem ( soundGrid ) ~= -1 ) then if ( isElement ( sound ) ) then if(isSoundPaused( sound )) then setSoundPaused( sound, false) else setSoundPaused( sound, true) end end end
-
لمن تسوي الكود روح النوت باد واضغط ع Encoding من ثم اختار ثالث خيار اللي هو .. : Encode in UTF-8 without BOM
-
حبيبي كيف تحط فراغ ب اسم الافنت ^
-
ي شباب شوفو وش حاط http://websta.me/p/1029998131992969566_1635454207 programming With Energy Drink!! : يقول ههههههههههههههههه .. عرفنا الان وش سبب انك خبل كذا
-
--[[ RegarDs Robin [sGC] Social Gaming CommuniTy Enjoy The Script ]] exports.scoreboard:addScoreboardColumn('Played') local t = { } function checkValues( source,arg1,arg2) if (arg2 >= 60) then t[ source ][ 'min' ] = tonumber( t[ source ][ 'min' ] or 0 ) + 1 t[ source ][ 'sec' ] = 0 end if (arg1 >= 60) then t[ source ][ 'min' ] = 0 t[ source ][ 'hours' ] = tonumber( t[ source ][ 'hours' ] or 0 ) + 1 end return arg1, arg2 end setTimer( function( ) for _, v in pairs( getElementsByType( "player" ) ) do if (not t[ v ]) then t[ v ] = { ["hours"] = 0, ["min"] = 0, ["sec"] = 0 } end t[ v ][ 'sec' ] = tonumber( t[ v ][ 'sec' ] or 0 ) + 1 local min,sec = checkValues ( v, t[ v ][ 'min' ] or 0, t[ v ][ 'sec' ] or 0 ) local hours = tonumber( t[ v ][ 'hours' ] or 0 ) setElementData( v, "Played", tostring( hours ) .. ' Hours ' ) end end, 1000, 0 ) function onPlayerQuit ( ) local playeraccount = getPlayerAccount ( source ) if ( playeraccount ) and not isGuestAccount ( playeraccount ) then local sValue = getElementData( source,'Played' ) local hours = tonumber( t[ source ][ 'hours' ] or 0 ) local min = tonumber( t[ source ][ 'min' ] or 0 ) local sec = tonumber( t[ source ][ 'sec' ] or 0 ) setAccountData ( playeraccount, "Time Played-hours", tostring(hours) ) setAccountData ( playeraccount, "Time Played-min", tostring(min) ) setAccountData ( playeraccount, "Time Played-sec", tostring(sec) ) setAccountData ( playeraccount, "Time Played", tostring(sValue) ) end t[ source ] = nil end function onPlayerLogin (_, playeraccount ) if ( playeraccount ) then local time = getAccountData ( playeraccount, "Time Played" ) local hou = getAccountData ( playeraccount, "Time Played-hours") local min = getAccountData ( playeraccount, "Time Played-min") local sec = getAccountData ( playeraccount, "Time Played-sec") if ( time ) then setElementData ( source, "Played", time ) t[ source ]["hours"] = tonumber(hou) t[ source ]["min"] = tonumber(min) t[ source ]["sec"] = tonumber(sec) else setElementData ( source, "Played",0 ) setAccountData ( playeraccount, "Time Played",0 ) end end end addEventHandler ( "onPlayerQuit", root, onPlayerQuit ) addEventHandler ( "onPlayerLogin", root, onPlayerLogin )
-
انت قلت تبي تستخدم الفنكشن هذا مع البيد صح او لأ ؟؟؟ وانا سويت لك طريقة ولمن تستخدمه تضبط .. سواء يضرب برجله ولا بيده ولا بلسانه اهم شي اشتغل معاهـ يعني ما يهمني انا اهم شي اشتغل الفنكشن مع البيد وخلاص اذا ما ضربت برجله ولا مدري وش هذي من اللعبة مو مني اهم شي الفنشكن اشتغل !! انت قلت تبي يشوت برجله بالموضوع الاول ؟ انا استخدمت لك الفنكشن حق الفايت ستايل ما جبت شي من عندي واللي صار وريتك هو لعل وعسى فهمتني انا طرحت الشي اللي صار معي واشتغل بس ! اخر رد لي .
-
مو حاط اسم للفنكشن ومن وين جبت بلير .. ع اي اساس ؟ وعندك خطا بصناعة الماركر حق التلوين المفروض كل ارقمنت لحاله انت كذا ارقمنت واحد وفي خطا حق اكواد المنتدى هذي حط فراغ بالسطر نفسه .. يعني كودك كله خطا مدري لو في اخطاء ثانية .
-
حبيبي كودك من الاساس كله غلط !
-
ما شاء الله عليكم .. بالضربة العادية يسوي الكونق فو !!!!!!!!!! وترا يرفع رجله او لا هذي مالي دخل فيها من اللعبة .. اهم شي تغيرت الحركة . طبعا ما ودي ازود بالكلام والردود لكن بوريكـ طبعا الصورهـ اللي طرحتها كود سيرفر كان كذا : local x,y,z = getElementPosition ( getRandomPlayer ( ) ) tstped = createPed ( 0, x+2,y+2,z ) addCommandHandler ( "testfi", function ( player ) setPedFightingStyle ( tstped, 6 ) triggerClientEvent ( player, "startBoxing", player, tstped ) end ) نخليه كذا ونشوف : local x,y,z = getElementPosition ( getRandomPlayer ( ) ) tstped = createPed ( 0, x+2,y+2,z ) addCommandHandler ( "testfi", function ( player ) ----setPedFightingStyle ( tstped, 6 ) triggerClientEvent ( player, "startBoxing", player, tstped ) end ) وهذي صورهـ بعد ما جربت الكود بعد التعديل ذا : اعتقد الموضوع صار واضح جدا ما يحتاج نرجع نزود ردود .