0 Üye ve 1 Ziyaretçi konuyu incelemekte.
ozelSkinler = { [1] = { "TSK", 1 }, -- ACL grubu ve Skin ID[2] = { "Polis", 2 }, -- ACL grubu ve Skin ID[3] = { "Polis", 7 }, -- ACL grubu ve Skin ID[4] = { "Polis", 9 }, -- ACL grubu ve Skin ID}addEventHandler("onElementModelChange", root, function( eskiModel )local accountname = getAccountName(getPlayerAccount(source)) for _, data in pairs (ozelSkinler) do local Grup, Skin = data[1], data[2] if getElementModel(source) == Skin and not isObjectInACLGroup("user." ..accountname, aclGetGroup(Grup)) then outputChatBox("Bu skini sadece "..Grup.." giyebilir", source, 255, 255, 255, true) setTimer(setElementModel, 50, 1, source, 0) end end end)