Jump to content

TAPL

Retired Staff
  • Posts

    7,337
  • Joined

  • Days Won

    11

Everything posted by TAPL

  1. killmessages_client + killmessages_server تحطه بالملفين _getPlayerName = getPlayerName function getPlayerName(player) return _getPlayerName(player):gsub("#%x%x%x%x%x%x", "") end * غير مجرب
  2. TAPL

    [Help]medkit

    Server only, no need for the client. local theMarker = createMarker(1176.19, -1339.09, 13.985, "cylinder", 3, 0 255 0) addEventHandler("onMarkerHit", theMarker, function(player) if getElementType(player) == "player" then outputChatBox("Type /med to buy 25% of Health", player, 255, 255, 255) end end) addCommandHandler("med", function(player) if getPlayerMoney(player) >= 1500 then local newHealth = getElementHealth(player) + 25 setElementHealth(player, newHealth) takePlayerMoney(player, 1500) outputChatBox("You have bought 25% health for $1,500", player, 0, 255, 0) end end)
  3. TAPL

    [HELP] SQLite

    addCommandHandler("lol", function(p) for i, row in ipairs(getDBAccountData(getPlayerAccount(p), "Ranks")) do for column, value in pairs(row) do outputChatBox(column..": "..value) end end end) Read the second example in the wiki and you will understand. https://wiki.multitheftauto.com/wiki/DbPoll Also you don't need to add the db file in the meta.
  4. محدد مابين 0 و 1 setSoundVolume الرقم الي تقدر تحطه بالفنكشن 1.508 أنت حاط 1.5 و بالكومنت كاتب
  5. -- كل الأسلحة addEventHandler("onResourceStart", resourceRoot, function() weaponList = {"colt 45", "silenced", "deagle", "shotgun", "sawed-off", "combat shotgun", "uzi", "mp5", "ak-47", "m4", "tec-9", "rifle", "sniper", "minigun"} for _,weapon in ipairs(weaponList) do for _,skill in ipairs({"poor", "std", "pro"}) do setWeaponProperty(weapon, skill, "damage", 70) -- ضع هنا القوة end end end)
  6. جرب dxDrawImage ( 589, 338, 121, 90, '1.png', angle, 0, 0, tocolor(255,255,255,255), true)
  7. سوي تريقر ولا حط المنت داتا ولا المنت آيد
  8. vehicle = createVehicle(...) engineApplyShaderToWorldTexture(shader, "vehiclegrunge256", vehicle)
  9. الله يهديك حاط بكودك هريس حق يزن و تبيه يشتغل
  10. لا onClientPlayerWasted بس تحتاج الأفنت
  11. الكود خرابيط + ما قلت وش الي تبي تسويه ينقل إلى قسم البرمجة
  12. الأزرار مو حلوه، حاول تسوي شكل افضل للأزرار
  13. TAPL

    سؤال

    تقدر لكن بنفس المود فقط local تحط المتغير بدون كلمة
  14. TAPL

    طلب كود

    ذا كلينت ولا سيرفر؟ الوضح لي انه كلينت لازم تعرف ان السيارة بالكلينت ماتقدر تركبها + الفلوس بالكلينت تكون وهميه
  15. TAPL

    طلب كود

    عادي كلينت الفرق بين السيرفر و الكلينت ان السيرفر يحتاج المنت اللاعب الي تبي تجيب فلوسه بينما الكلينت ما يحتاج لاعب
  16. TAPL

    طلب كود

    -- Server if getPlayerMoney(player) >= 1000 then -- معه 1000 else -- ما معه 1000 end
  17. See the example in the wiki. https://wiki.multitheftauto.com/wiki/GetKeyState
  18. function Script_Buy_1_True() outputChatBox("You have bought a (Chips) for a (Money).", client, 255, 255, 255, true) end addEvent("Trigger_Buy_1_True",true) addEventHandler("Trigger_Buy_1_True", getRootElement(), Script_Buy_1_True) function Script_Buy_1_False() outputChatBox("You don't have enough (Money) to buy a (Chips).", client, 255, 255, 255, true) end addEvent("Trigger_Buy_1_False",true) addEventHandler("Trigger_Buy_1_False", getRootElement(), Script_Buy_1_False)
  19. ينقل إلى قسم البرمجة
  20. TAPL

    طلب كود

    bindKey guiGetVisible guiSetVisible showCursor
  21. dxCreateScreenSource dxUpdateScreenSource dxDrawImage
  22. TAPL

    طلب

    (هريس مضاعف)
×
×
  • Create New...