Jump to content

Le3bA

Members
  • Posts

    6
  • Joined

  • Last visited

Everything posted by Le3bA

  1. dxDrawImage ( screenWidth/2 - 50, 0, 100, 100, 'logo.png', angle, 0, -120 ) عدل علي السطر دا الاحدثيات الصوره وحطها فوق تاب بالظبت
  2. 30 Days : 2592000000 7 Days : 604800000 setTimer
  3. Le3bA

    x[=كود=]x

    كلنت : addEventHandler ( 'onClientGUIClick', root, -- حدث ضعط ع زر function ( ) -- وظيفه if ( source == button ) then triggerServerEvent ( 'GiveMoney', localPlayer ) -- تريقر من كلنت لسرفر end -- اند الحدث end -- اند الفكشن ) -- قوس --- سرفر addEvent ( 'GiveMoney' , true ) -- استقبال التريقر addEventHandler ( 'GiveMoney', root, --استقبال التريقر function ( ) -- وظيفه givePlayerMoney ( source , 500 ) -- رقم الفلوس outputChatBox ( ' Type ', source, 255,255,255, true ) -- يجي في الشات end ) اخوي من الكلنت جهه وهميه .
  4. سلام عليكم بغيت اسوي اذا كتب في ايدت وضعط علي زرار يروح الكلام الكتبو في الايدت للقريد لست يعني دا سبورت سيستم م اشتغل الكود %_% كلنت : addEventHandler ( 'onClientGUIClick', root, function ( ) if source == GUIEditor.button[1] then local message = guiGetText ( GUIEditor.edit[1] ) if message == "" then return end guiSetEnabled( GUIEditor.button[1], false ) setTimer( guiSetEnabled, 1000, 1, GUIEditor.button[1], true ) triggerServerEvent ( 'Support;Send', localPlayer, message ) end end ) function GridList ( player, message ) local aRow = guiGridListAddRow ( GUIEditor.gridlist[1] ) guiGridListSetItemText ( GUIEditor.gridlist[1], aRow, 1,' '..player..' '..message..' ', false, false ) end addEvent ( 'Support;AddGridlist', true ) addEventHandler ( 'Support;AddGridList', root, GridList ) سرفر : addEvent ( 'Support;Send', true ) addEventHandler ( 'Support;Send', root, function ( player, message ) local player = getPlayerName ( source ) triggerClientEvent ( 'Support;AddGridList', root, player, message ) end )
×
×
  • Create New...