Jump to content

TAPL

Retired Staff
  • Posts

    7,337
  • Joined

  • Days Won

    11

Everything posted by TAPL

  1. تقدر تستخدم الشرطة على فكرة الشرطة زي الحرف الأثنين نفس النتيجة: for _,v in ipairs ( table ) do outputChatBox ( _ ) end for i,v in ipairs ( table ) do outputChatBox ( i ) end
  2. Wow Mr.gSub you very smart! So you want to let the player download your client files and also waiting it to complete before you make the amazing trigger to server side for redirecting the player. Very good! excellent!!! And by the way, getPlayerSerial doesn't require argument at client side!
  3. ما حطيت ارقمنت آيد الشخصية
  4. TAPL

    Colorcodes

    function getPlayerStatus() -- * should be added before you call the function local admin = getElementData(localPlayer, "Status") if admin then return admin else return "Guest" end end dxDrawText(getPlayerStatus(), x+522, y-5 + (c - 1) * 20, x + 425+35, y + (c) * 20, tocolor(0,0,0, 255), 1, "default-bold", "center", "center", false, false, false, true) -- dxDrawText(getPlayerStatus(), x+522+2, y-5+2 + (c - 1) * 20, x + 425+35, y + (c) * 20, tocolor(255,255,255, 255), 1, "default-bold", "center", "center", false, false, false, true)
  5. TAPL

    Colorcodes

    function getPlayerStatus() -- * should be added before you call the function local admin = getElementData(localPlayer, "Status") if admin then return admin else return "Guest" end end dxDrawText(getPlayerStatus(), x+522, y-5 + (c - 1) * 20, x + 425+35, y + (c) * 20, tocolor(0,0,0, 255), 1, "default-bold", "center", "center", false, false, true) -- dxDrawText(getPlayerStatus(), x+522+2, y-5+2 + (c - 1) * 20, x + 425+35, y + (c) * 20, tocolor(255,255,255, 255), 1, "default-bold", "center", "center", false, false, true)
  6. TAPL

    Colorcodes

    Maybe try localPlayer?
  7. + كودك من اساس مافيه قريد لست + اكواد ناسخها من الويكي و مودات ثانية و مخبصها على بعض
  8. دابليو تي اف؟
  9. guiSetVisible
  10. Its need integer number of the weapon slot, not boolean!
  11. TAPL

    Colorcodes

  12. TAPL

    Colorcodes

    What your element data return?
  13. What doesn't work?
  14. -- Server! addEventHandler Event: 'onPlayerLogin' getAccountName aclGetGroup isObjectInACLGroup setElementData -- Client! dxCreateTexture addEventHandler Event: 'onClientRender' getElementsByType -- player -- لووب! getElementData getTickCount -- table يحتاج 'dxDrawMaterialLine3D' Event: 'onClientPlayerQuit' بأنتظار الهريس**
  15. TAPL

    help!

    Though it written "string" on the wiki ._. http://i.imgur.com/MhJKEZo.png
  16. TAPL

    help!

    Item data can be table.
  17. TAPL

    Level?

    addEvent("supersoldier", true) addEventHandler("supersoldier", root, function() local nLevel = tonumber(getElementData(source, "level")) or 0 if (nLevel >= 20) then setElementModel(source, 285) else outputChatBox("You don't have the requirements of the supersoldier!", source, 255, 0, 0) end end)
  18. You need also to make sure that the player who hit the marker is the localPlayer. And outputChatBox client side doesn't have player argument.
  19. TAPL

    Button Visible

    addEventHandler("onClientGUIClick", GUIEditor.button[1], function() if source == GUIEditor.button[1] then if getPlayerMoney() >= 2000 then guiSetVisible(GUIEditor.button[7], true) guiSetVisible(GUIEditor.button[1], false) triggerServerEvent("m4std", localPlayer) end end end, false)
  20. TAPL

    Button Visible

    Use getPlayerMoney before you trigger.
  21. TAPL

    help!

    setCameraMatrix
  22. Client side for whitelist, seriously?
  23. percentage is nil.
  24. guiSetText("الكلام الي تبيه ينحط بالليبل", wrongPassLabel) اسم الليبل يجي قبل الكلام guiSetText(wrongPassLabel, "الكلام الي تبيه ينحط بالليبل")
×
×
  • Create New...