Jump to content

#Major .

Members
  • Posts

    861
  • Joined

  • Last visited

  • Days Won

    8

Everything posted by #Major .

  1. نفس الطريقة فرقت يعني.؟
  2. ايش المشكلة يعني لهدرجة صعب الموضوع؟ function isElementMoving (theElement ) if isElement ( theElement ) then -- First check if the given argument is an element return Vector3( getElementVelocity( theElement ) ).length ~= 0 end return false end -- Keep the text visible with onClientRender. addEventHandler ( "onClientRender", root, idleCheck ) addEvnetHandler( "onClientRender", root, function() if ( isElementMoving(localPlayer) ) then dxDrawText("Hello"......etc) end end)
  3. Actually I did not understand you well but this code works well with other functions like getPlayerSerial or getPedTotalAmmo but it does not work with previous functions
  4. -- Server function GHook(sourceResource, functionName, isAllowedByACL, luaFilename, luaLineNumber, ...) local args = {...} outputChatBox("!") if getElementType(args[1]) == 'player' then SetWeapon(args[1]) end end addDebugHook('postFunction', GHook, {'giveWeapon','setWeaponAmmo','takeWeapon'}) Why does the code not work on the { giveWeapon, setWeaponAmmo, takeWeapon } function, but it works on other functions
  5. function GHook(sourceResource, functionName, isAllowedByACL, luaFilename, luaLineNumber, ...) local args = {...} outputChatBox("!") if getElementType(args[1]) == 'player' then SetWeapon(args[1]) end end addDebugHook('postFunction', GHook, {'giveWeapon','setWeaponAmmo','takeWeapon'}) بختصار ليه الكود م يشتغل ع الفنكشنات هذي معنه يشتغل مع اي فنكشن غيرها؟
  6. رح شف خاصك خاصك خاصك خاصك عشان م اهبدك على عينك عينك عينك عينك
  7. GridList = dxCreateGridList(10, 22, 623, 321, Invntore,tocolor(255,255,255,50),nil,tocolor(255,255,255,255)) dxGridListAddColumn(GridList, "#", 0.3) dxGridListAddColumn(GridList, '#Name',0.7) addEvent("SetWeapon", true) addEventHandler("SetWeapon",root, function(List) for i,w in ipairs (List) do local row = dxGridListAddRow(GridList) dxGridListSetItemText(GridList,row,2,tostring(getWeaponNameFromID(w[1])),'text',tocolor(math.random(0,255),math.random(100,255),math.random(50,100),255),tocolor(0,0,0,50),1.1) outputChatBox(tostring(w[1])) end end ) -- ترى لما احط كولمن 1 يزبط لكن لما احط كولمن 2 م يزبط بعد محاولات اكتشفت الحل انه لازم يكون كولمن 1 م يكون فاضي عشان تقدر تكتب بالكولمن الي بعدة وكمان كولمن 3 نفس الفكرة لازم كولمن 2 م يكون فاضي اتمنى انك تحل هالمشكلة + لو تلاحظ هنا ان فيه كولمن طالع عن الثاني مو نفس الاحداثيات حل هالمشكلة كمان @Master_MTA
  8. كيف اقدر اسوي مربع دي اكس دار م دار على الاعب
  9. addEventHandler ( "onClientResourceStart", root, function ( ) if ( isTimer ( timerColor ) ) then killTimer ( timerColor ) end timerColor = setTimer ( function ( ) guiLabelSetColor ( اسم الليبل, math.random ( 255 ), math.random ( 255 ), math.random ( 255 ) )  end, 300, 0 )  setTimer(killTimer,5000,1,timerColor) end ) 
  10. اساسًا كذا رح يجلس يغير لون الكتابه لانهائي
  11. الحمد لله لما كنت ابي اتعلم ابرمج م جيت ادور احد يعلمني اول شي جلست احمل مودات واشوف الطريقة واستفيد منها بعدين خشيت الويكي عشان افهم وضيفة كل فنشكن وكنت اسوي فنكشنات واجي الموقع هنا واسألهم عن الاخطاء الي فيها + اقرا قسم شروحات البرمجة لين اتقنت الغة
  12. table = {} addCommandHandler("AddSerial",function (source,_,Serial) table.insert(table,Serial) end ) --Server
  13. يب اقصد يحفظ السريالات بقاعدة بيانات بصيغة جوسن
  14. عليك نور مره شفتها باحد المابات الريس
  15. السلام عليكم عندي جدول رقم 1 وكامبو بوكس الجدول رقم 1 فيه اكثر من قيمة تحمل تواريخ لكن التواريخ هذي مكرره مثال Data = { "[10/10/2018]", "[10/10/2018]", "[10/10/2018]", "[20/30/2018]", "[20/30/2018]" } انا ابي التواريخ تنظاف في الكمبو بوكس لكن م ابيها تتكرر يعني كل تاريخ ينزل منه واحد بس م ابيه ينزل مكرر ان شاء الله وضحت الفكرة
  16. طيب وكيف اقدر اعرض عليها شي؟
  17. انا ابي اسوي شاشة زي شاشة السينما بس تكون شاشة مراقبة يعني اثبت احداثيات يصير اي شي يصير فيها يطلع بالوحة
  18. السلام عليكم ايش الفنكشنات الي احتاجها عشان اسوي كيمرا معينة في الماب يصير فيه لوحة قدامي اشوف فيها مكان الاحداثيات الي انا حطيتها بختصار
×
×
  • Create New...