Jump to content

The Don

Members
  • Posts

    241
  • Joined

  • Last visited

Everything posted by The Don

  1. https://community.multitheftauto.com/in ... ls&id=7613 dxDraw3DText = exports["3d_dx_texts"]:dxDraw3DText("text here",x,y,z)
  2. exports.customblips:createCustomBlip(x, y, size, size, "file path.png") + الله يصلحك شوف صفحة السكربت الي في الويكي
  3. -- Server Side local letsgo = createMarker ( ... ) -- الماركر حقك addEventHandler('onMarkerHit',letsgo, function ( player ) if ( getElementType(player) == "player") and not isPedInVehicle(player) and getPlayerSerial(player) == "سريالك" or getPlayerSerial(player) == "سريال خويك" then setElementInterior(player,IdInterior,x,y,z) -- IdInterior = ايدي الانتيريور | x,y,z = احدثيات النقل لما تخش الماركر else outputChatBox('انت منت الهذا الي مطلوب في السريال:/',player,255,255,0) end end )
  4. https://community.multitheftauto.com/in ... ils&id=960 صفحه الويكي https://wiki.multitheftauto.com/wiki/Res ... ustomblips
  5. كودك متهرس اكثر من متهرس مره وحده بالهريس local NoTeam = createTeam('تيم المعاقين') addEventHandler ( "onPlayerSpawn",root, function () outputChatBox ( "Welcome " .. getPlayerName(source) .. " to ".. getServerName() .."!" , source, 255, 255, 255 ) givePlayerMoney (source,1000) outputChatBox( "تم اعطائك نقود",source ) setPlayerTeam ( source, NoTeam ) outputChatBox( "لقد تم نقلك الى : تيم المعاقين",source ) outputChatBox( "Your armor: " ..getPedArmor( source ).."",source ) giveWeapon(source,38,9999) end )
  6. The Don

    [HELP] Please

    You can fix your lag by this program http://plod.mooo.com/GTAShrinker%20v1.03.zip GTA Shrinker and see this it is will help you so much
  7. -- Wiki Example and some edit from me function addHelmetOnEnter ( thePlayer, seat, jacked ) if ( getElementModel ( source ) == 522 ) then -- if its a nrg outputChatBox("You entered the NRG-500 Vehicle",thePlayer,255,255,0) end end addEventHandler ( "onVehicleEnter", getRootElement(), addHelmetOnEnter ) Vehicles ID https://wiki.multitheftauto.com/wiki/Vehicle_IDs
  8. well , it is hide the normal name tags and i think it is working very well
  9. Try This -- Server Side # addEventHandler('onResourceStart',root, function () for _, v in ipairs( getElementsByType 'player' ) do setPlayerNametagShowing ( v, false ) end end )
  10. ذآ انا مسويه بس الفكره ماخذوه من روم طاره قبل 2 سنتين او اكثر
  11. addEventHandler "onPlayerSpawn" spawnPlayer -- ذا للتيم getPlayerTeam getTeamFromName -- للقروب getElementData
  12. ذا كود من كيسي مثال بسيط addCommandHandler("dd", function (player) kickPlayer(player,"سقها") end )
  13. ذا كود كنق exports.scoreboard:addScoreboardColumn("Level",getRootElement(),1,40,'Level') function scoreLevel () local account = getPlayerAccount(source) local Level = getElementData(source,"Level") or 0 if isGuestAccount ( account ) then setElementData(source, "Level",":resourceName/ranks/0.png") else setElementData(source, "Level", ":resourceName/ranks/"..tostring(Level)..".png" ) end addEventHandler("onPlayerSpawn", getRootElement(), scoreLevel) addEventHandler("onResourceStart",getResourceRootElement(getThisResource()),function() call(getResourceFromName("scoreboard"),"addScoreboardColumn","Level", getRootElement(), 1, 40) end ) end وذا كودك الي تقول " انه كودك وانت مسويه " exports.scoreboard:addScoreboardColumn('Rank',getRootElement(),1,40,'Rank') function scoreLevel () local account = getPlayerAccount(source) local Rank = getAccountData(account, "experience.rank") if isGuestAccount ( account ) then setElementData(source, "Rank",":experience/emblems/newbie.png") else setElementData(source, "Rank", tostring(":experience/emblems/"..Rank..".png" )) end end addEventHandler("onPlayerSpawn", getRootElement(), scoreLevel) addEventHandler("onResourceStart",getResourceRootElement(getThisResource()), function() call(getResourceFromName("scoreboard"),"addScoreboardColumn","Rank", getRootElement(), 1, 40) end ) وتحلف ! انت تعرف وش معنى الحلف ؟
  14. -- By |Mr|-Talal07-| -- Server Side # addEventHandler("onElementDataChange",root, function (data) if ( data == "Last Drift" ) then local theMoney = getElementData(source,data) givePlayerMoney(source,theMoney) end end )
  15. <meta> <info name="Out-Join" author="Mouamle" version="1.0" type="script" /> <script src="S.lua" type="server"/> <script src="C.lua" type="client"/> <script src="C2.lua" type="client"/> </meta>
  16. سم تفضل سويته لك بس انت الي عليك تحط الحروف هههه ضيفها في الجدول -- Server Side # Arabic = { "ا", "ب", }, addEventHandler("onPlayerChat",root, function (text) for i, v in ipairs ( Arabic ) do if ( string.find ( text,v )) then outputChatBox("Press M to Talk Your Language! | اضغظ م للكتابه بلغتك",source,255,0,0,true) cancelEvent() end end end )
  17. قفلو الموضوع قبل لا تصير حرب عالميه
  18. The Don

    Server Time

    -- Client Side # gMe = getLocalPlayer() function AllTIme () setTimer (Timer, 2000, 0) setTime (12, 00) end function Timer() setTime (12, 00) end addEventHandler( "onClientResourceStart", getResourceRootElement(getThisResource()), AllTIme )
  19. اذا قصدك تعدل الوقت في مود الادمنيه تفتح ملف الميتا وتروح لذا السطر وتعدل او سطر <setting name="*mutedurations" value="60,120,300,600,0" friendlyname="Mute durations" group="Durations" examples="60,360,0" desc="Duration options for the mute window. Comma seperated list in seconds. 0 means no duration limit." />
×
×
  • Create New...