Jump to content

+Source|>

Members
  • Posts

    1,388
  • Joined

  • Last visited

  • Days Won

    14

Everything posted by +Source|>

  1. كذا اشتغلت معك ؟
  2. addEventHandler("onClientResourceStart",root, function() sound2 = playSound("music.mp3") --Play wasted.mp3 from the sounds folder setSoundVolume(sound2, 0.5) -- set the sound volume to 50% end ) addEventHandler( 'onClientGUIClick', root, function() if (source == Go) then stopSound( sound2 ) end end ) كوداتك تخبييص
  3. طيب انا عارف بس ابي يجيني بالشات الأمر اللي كتبه مثلاً stopall او debugscript 3
  4. ابي للما اللاعب يكتب كلمه في ف 8 يجيني بالشات الكلمه اللي كتبها وش الفكشن؟
  5. outputChatBox( count, root, 0, 0, 0, true )
  6. يمكن انت مو معرف account
  7. local editB = YOUREDIT addEventHandler("onClientGUIChanged", root, function() if source == editB then if ( guiGetText( source ) == "" ) then guiGridListClear( GridList ) for i, v in ipairs ( getElementsByType( 'player' ) ) do local Row = guiGridListAddRow( GridList ) guiGridListSetItemText ( GridList, Row, 1, getPlayerName ( v ), false, false ) guiGridListSetItemText ( GridList, Row, 2, getPlayerTime( v ), false, false ) end else guiGridListClear( GridList ) for i, v in ipairs ( getElementsByType( 'player' ) ) do local Row = guiGridListAddRow( GridList ) if string.find ( getPlayerName( v ), guiGetText( editB ) ) then guiGridListSetItemText ( GridList, Row, 1, getPlayerName ( v ), false, false ) guiGridListSetItemText ( GridList, Row, 2, getPlayerTime( v ), false, false ) end end end end end ) YOUREDIT = اسم الايديت بوكس حقك
  8. العفو موفق
  9. function notifyPlayerLoggedIn(player) outputChatBox ( "#C5C5C5Press #FFFFFF'#C5C5C5P#FFFFFF' to open your admin panel", player, 0,0,0,true ) local unread = 0 for _, msg in ipairs ( aReports ) do unread = unread + ( msg.read and 0 or 1 ) end if unread > 0 then outputChatBox( unread .. " unread Admin message" .. ( unread==1 and "" or "s" ), player, 255, 0, 0,true ) end end جرب
  10. اكواد الوان بس عشان الكود يشتغل تأكد من وجود كلمة true في outputChatBox مثلا outputChatBox("#ffff00 welcome", player, 255,255,255,true)
  11. ادري حطيتها او لا نفس الكود
  12. نفسها ` ذي ماتغير شيء
  13. انا مسوي جدول بالسكل يودي للقريد ليست ابي لما يحدد رو في القريد ليست يحذفه من السكل executeSQLQuery("DELETE FROM AccountsSourceP WHERE NameP=?", NameP) كذا صح ؟
  14. كيف اسوي الكاميرا تتحرك من اليمين لليسار كاميرا ماتركس ؟
  15. انت اكيد مسويه غلط ارسل التاجات خاص
  16. وش فيه ذا addEvent("DeleteAccount", true) addEventHandler("DeleteAccount", root, function( nn ) local sourceAccount = getPlayerAccount ( nn ) removeAccount ( sourceAccount ) end ) nn = تعريف للجريد ليست واسم الحساب محدده
  17. لالا العكس بالسيرفر
  18. هنا ابي اسوي لما اللاعب يسجل يجي حسابه بالجريد ليست بس المشكله انه لما يسجل اكثر من مره اسمه يجي كثيير ابيه يجي مره بس بالجريد ليست -- client addEvent ( 'AddInGrid2' , true ) addEventHandler ( 'AddInGrid2' , root , function( Table ) guiGridListClear( allAccountsGrid ) for i, v in ipairs( Table ) do local Rowgg = guiGridListAddRow( allAccountsGrid ) guiGridListSetItemText( allAccountsGrid, Rowgg, 1, v.accountP , false, false ) guiGridListSetItemColor( allAccountsGrid, Rowgg, 1, 0, 255, 255 ) end end ) -- client addEvent ( 'Refresh_2' , true ) addEventHandler ( 'Refresh_2' , root , function () local aSQL2c = executeSQLQuery ( 'SELECT * FROM AccountPlayers' ) if ( #aSQL2c ~= 0 ) then triggerClientEvent ( root, 'AddInGrid2' , root , aSQL2c ) end end ) addEventHandler("onPlayerLogin", root, function() local accountP = getAccountName( getPlayerAccount( source ) ) triggerEvent ( 'Refresh_2' , root ) executeSQLQuery( "INSERT INTO AccountPlayers ( accountP ) VALUES( ? )", accountP ) end )
×
×
  • Create New...