Jump to content

طلب كود عصب جدا


Recommended Posts

setTimer(function() 
if getElementModel(localPlayer) == yourskinid then 
if getPlayerSerial(localPlayer) ~= "Your Serial" then 
outputChatBox("This Skin is only For ....", 255, 0, 0, 0, true) 
setElementModel(localPlayer, 0) 
else 
end 
end 
end, 1000, 0) 
Link to comment
setTimer(function() 
if getElementModel(localPlayer) == yourskinid then 
if getPlayerSerial(localPlayer) ~= "Your Serial" then 
outputChatBox("This Skin is only For ....", 255, 0, 0, 0, true) 
setElementModel(localPlayer, 0) 
else 
end 
end 
end, 1000, 0) 

وين احط رقم شخصية

Link to comment
setTimer(function() 
if getElementModel(localPlayer) == yourskinid then 
if getPlayerSerial(localPlayer) ~= "Your Serial" then 
outputChatBox("This Skin is only For ....", 255, 0, 0, 0, true) 
setElementModel(localPlayer, 0) 
else 
end 
end 
end, 1000, 0) 

وين احط رقم شخصية

عند yourskinid

Link to comment
setTimer(function() 
if getElementModel(localPlayer) == yourskinid then 
if getPlayerSerial(localPlayer) ~= "Your Serial" then 
outputChatBox("This Skin is only For ....", 255, 0, 0, 0, true) 
setElementModel(localPlayer, 0) 
else 
end 
end 
end, 1000, 0) 

فنكشن سريال اللاعب سيرفر فقط, لأنه بعض المرات يعطي سريالات خاطئه, وبالأساس مافيه ارقومنت لاعب بالكلينت.

Link to comment

تصحيح الكود : -

هيبقا ملف سيرفر

function CheakSkin() 
    for i, player in ipairs(getElementsByType("player")) do 
        local Serial = getPlayerSerial(player) 
        local skin = getElementModel(player) 
            if Skin == YourSkinID then 
   if Serial ~= "YourSerail" then 
  setElementModel(player, 0) 
  else 
            end 
        end 
    end 
end 
setTimer(CheakSkin, 1000, 0, true) 

or

function Cheak() 
    if ( getElementType(source) == "player" ) then 
        if getElementModel(source) == YourSkinID then 
        if getPlayerSerial(source) ~= "Your Serial" then 
        setElementModel(source, 0) 
        outputChatBox("This Skin is only for Developers !!", source, 255, 0, 0) 
            end 
        end 
    end 
end 
addEventHandler("onElementModelChange", root, Cheak) 
Link to comment
تصحيح الكود : -

هيبقا ملف سيرفر

function CheakSkin() 
    for i, player in ipairs(getElementsByType("player")) do 
        local Serial = getPlayerSerial(player) 
        local skin = getElementModel(player) 
            if Skin == YourSkinID then 
   if Serial ~= "YourSerail" then 
  setElementModel(player, 0) 
  else 
            end 
        end 
    end 
end 
setTimer(CheakSkin, 1000, 0, true) 

or

function Cheak() 
    if ( getElementType(source) == "player" ) then 
        if getElementModel(source) == YourSkinID then 
        if getPlayerSerial(source) ~= "Your Serial" then 
        setElementModel(source, 0) 
        outputChatBox("This Skin is only for Developers !!", source, 255, 0, 0) 
            end 
        end 
    end 
end 
addEventHandler("onElementModelChange", root, Cheak) 

الاكواد صح بس مو مرتبة ض

Link to comment

مرتن ثانيه حاول تكتب عنوان للموضوع كويس

توضح فيه طلبك وايش المشاكل عندك

مثال بسيط : انا كنت ابرمج مود بسيط وحصلت لي مشكله في

ايفنت لما يموت اللاعب

اروح احط العنوان كذا

x[ مشكلة ]x | onPlayerWasted - في إيفنت

Link to comment

هذا كود عصبي

local serial = "اضف السيريال هنا" 
local skin = 0 -- رقم الشخصية 
addEventHandler("onElementModelChange", root, function(old) 
    if getElementType(source) == "player" and getElementModel(source) == skin and getPlayerSerial(source) ~= serial then 
        setElementModel(source, old) 
        outputChatBox("الشخصية مش ملك خالص", source, 255, 0, 0) 
    end 
end) 

Link to comment

هذا كود عصبي

local serial = "اضف السيريال هنا"
local skin = 0 -- رقم الشخصية
addEventHandler("onElementModelChange", root, function(old)
    if getElementType(source) == "player" and getElementModel(source) == skin and getPlayerSerial(source) ~= serial then
        setElementModel(source, old)
        outputChatBox("الشخصية مش ملك خالص", source, 255, 0, 0)
    end
end)

ماشاء الله كودك عصبي مرة , المرة الجاية خله يهدى

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...