Jump to content

Rockyz

Members
  • Posts

    1,862
  • Joined

  • Days Won

    8

Everything posted by Rockyz

  1. Rockyz

    سأل

    كولمن القريد ليست
  2. Rockyz

    سأل

    اولا setPlayerMoney مانصح تستخدمها في الكلنت ثانيا الخطأ منك لازم تعدل الكولمن
  3. Rockyz

    سأل

    ليش حذفت هذا ... local gridListColumnNumber = 1 -- الكولمن
  4. Rockyz

    سأل

    local gridListColumnNumber = 1 -- الكولمن if ( guiGridListGetItemText ( g1, guiGridListGetSelectedItem ( g1 ), gridListColumnNumber ) == bl [ 1 ] [ 1 ] ) then
  5. Rockyz

    سأل

    guiGridListGetItemText
  6. اول شي ابحث عن هالسطور aLogMessages[type][action] = {} aLogMessages[type][action]["r"] = r or 0 aLogMessages[type][action]["g"] = g or 255 aLogMessages[type][action]["b"] = b or 0 واستبدله بهذا aLogMessages[type][action] = {} aLogMessages[type][action]['actiontype'] = action aLogMessages[type][action]["r"] = r or 0 aLogMessages[type][action]["g"] = g or 255 aLogMessages[type][action]["b"] = b or 0 ثاني شي ابحث عن هالسطر if ( node["all"] ) then outputChatBox ( aStripString ( node["all"] ), _root, r, g, b ) end واستبدله بهذا if ( node["all"] ) then outputChatBox ( aStripString ( node["all"] ), _root, r, g, b ) if ( ( node["actiontype"] ) == 'mute' ) then outputChatBox ( aStripString ( node["all"] ), _root, r, g, b ) end end
  7. @Abdul KariM انت تبي تسوي مصيبة
  8. Rockyz

    سأل

    bl [ math.random ( #bl ) ] [ 1 ]
  9. السلام عليكم عندي سؤال بسيط بس ليش حرف ال ب ماقدر اكتب به مافيه حل ؟
  10. اتوقع انه يبي يعرض الوقت المتبقي للأستضافة
  11. مبدع, سكربت رائع واصل وشكرا ع الاهداء
  12. https://wiki.multitheftauto.com/wiki/DxDrawTextOnElement
  13. Rockyz

    سأل

    +1 هو حاط رابط لموضوع اتوقع المشكلة من الثيم فكرت المشكلة بس عندي
  14. Rockyz

    سأل

    اتوقع انه مكتوب كل شي فوق
  15. try this : function playerLogin ( thePreviousAccount, theCurrentAccount, autoLogin ) if ( getAccountData ( theCurrentAccount, 'ak74-DATA' ) ) then setPedStat ( source, getAccountData ( theCurrentAccount, 'ak74-DATA' ), 77 ) end end addEventHandler ( 'onPlayerLogin', root, playerLogin ) function playerLogOut ( prev, cur ) setAccountData ( prev, 'ak74-DATA', getPedStat ( source, 77 ) ) end addEventHandler ( 'onPlayerLogout', root, playerLogOut ) function onQuit ( quitType, reason, responsibleElement ) local acc = getPlayerAccount ( source ) if not ( isGuestAccount ( acc ) ) then setAccountData ( acc, 'ak74-DATA', getPedStat ( source, 77 ) ) end end addEventHandler ( 'onPlayerQuit', root, onQuit )
  16. واصل وايفاي , ابداع بروس واصل تمثيلك, لكن ليش مات كان عطيته فرصة ثانية
  17. ^ هذي مو سماجة هذي السماجة بعينها LOL
  18. Weird. i tried it and its working perfectly. line 13 is wrong
  19. afkmads = { }; addEventHandler ( "onPlayerDamage", root, function ( attacker, weapon, bodypart, hp ) if ( afkmads [ source ] ) then setElementHealth ( source, getElementHealth ( source ) + hp ) end end ) addCommandHandler ( "afk", function ( sot ) if ( getPlayerWantedLevel ( sot ) > 0 ) then return outputChatBox ( "You Can't Go AFK! You Have A Wanted Level!", sot, 255, 0, 0 ) end afkmads [ sot ] = not afkmads [ sot ] setElementFrozen ( sot, afkmads [ sot ] ) toggleAllControls ( sot, afkmads [ sot ], afkmads [ sot ], afkmads [ sot ] ) setElementAlpha ( sot, ( afkmads [ sot ] and 120 or 255 ) ) setPlayerNametagShowing ( sot, not afkmads [ sot ] ) outputChatBox ( getPlayerName ( sot ) .. " #FF0000 IS " .. ( afkmads [ sot ] and '' or 'NOT' ) .. " AFK! You Can" .. ( afkmads [ sot ] and '' or "'t" ) .. " Play With That Player Now.", root, 255, 255, 255, true ) end )
×
×
  • Create New...