-
Posts
1,862 -
Joined
-
Days Won
8
Everything posted by Rockyz
-
اولا setPlayerMoney مانصح تستخدمها في الكلنت ثانيا الخطأ منك لازم تعدل الكولمن
-
ليش حذفت هذا ... local gridListColumnNumber = 1 -- الكولمن
-
local gridListColumnNumber = 1 -- الكولمن if ( guiGridListGetItemText ( g1, guiGridListGetSelectedItem ( g1 ), gridListColumnNumber ) == bl [ 1 ] [ 1 ] ) then
-
اول شي ابحث عن هالسطور 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
-
@Abdul KariM انت تبي تسوي مصيبة
-
السلام عليكم عندي سؤال بسيط بس ليش حرف ال ب ماقدر اكتب به مافيه حل ؟
-
Tapleto-Host| Linux/Windows VPS - Game Servers - TeamSpeak
Rockyz replied to TAPL's topic in الاستضافات
ايه صح مانتبهت Up Time -
Tapleto-Host| Linux/Windows VPS - Game Servers - TeamSpeak
Rockyz replied to TAPL's topic in الاستضافات
اتوقع انه يبي يعرض الوقت المتبقي للأستضافة -
مبدع, سكربت رائع واصل وشكرا ع الاهداء
-
https://wiki.multitheftauto.com/wiki/DxDrawTextOnElement
-
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 )
-
x[ شرح مهم ]x executeSQLQuery + DB fuctions
Rockyz replied to iMr.WiFi..!'s topic in دروس في البرمجة
واصل وايفاي , ابداع بروس واصل تمثيلك, لكن ليش مات كان عطيته فرصة ثانية- 14 replies
-
- executesqlquery
- mysql
-
(and 2 more)
Tagged with:
-
^ هذي مو سماجة هذي السماجة بعينها LOL
-
Weird. i tried it and its working perfectly. line 13 is wrong
-
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 )