Jump to content

مشكللة


SycroX

Recommended Posts

السلام عليكم انا مش فاهم وش المشكلة انا جبت كود ويكي

و حابب اخليه لاكونتد محدد

function shootProjectile() 
        local vehicle = getPedOccupiedVehicle(localPlayer) 
        if(vehicle)then 
        if (getElementData( localPlayer ,"Account") == "1") then 
            local x, y, z = getElementPosition(vehicle) 
            createProjectile(vehicle, 21, x, y, z) 
        end 
    end 
end 
  
bindKey("vehicle_fire", "down", shootProjectile) 
  

المثال مثال الويكي انا ما ضفا الي سطر

4

Link to comment
اه -_-

اركب السيارة و ادوس زر الأطلاق

قبل ما احط كود تحقق من الأليمانت داتا

كان يطلق

بعد ما حطيتو صار ما يطلق

طيب يمكن الداتا مو سترنق ، جرب تسوي كذا

if ( getElementData( localPlayer, "Account" ) == 1 ) then 
Link to comment
اه -_-

اركب السيارة و ادوس زر الأطلاق

قبل ما احط كود تحقق من الأليمانت داتا

كان يطلق

بعد ما حطيتو صار ما يطلق

طيب يمكن الداتا مو سترنق ، جرب تسوي كذا

if ( getElementData( localPlayer, "Account" ) == 1 ) then 

الداتا اسم الحساب يعني مو 1

بس

يعني هيكون في

Mark

مثلا

احمد

Link to comment
اه -_-

اركب السيارة و ادوس زر الأطلاق

قبل ما احط كود تحقق من الأليمانت داتا

كان يطلق

بعد ما حطيتو صار ما يطلق

طيب يمكن الداتا مو سترنق ، جرب تسوي كذا

if ( getElementData( localPlayer, "Account" ) == 1 ) then 

الداتا اسم الحساب يعني مو 1

بس

يعني هيكون في

Mark

مثلا

احمد

طيب سوو كذا وشوف وش قيمة الداتا يمكن تعرف المشكلة وين

outputChatBox( tostring( getElementData( localPlayer, "Account" ) ) ) 
Link to comment

سويته لك

جدول تحط فيه اسماء الحسابات الي يقدرون يطلقون بس

تفضل

كلينت

bindKey ("w", "down",   
  
function (  ) 
  
local vehicle = getPedOccupiedVehicle(localPlayer) 
         
if ( vehicle ) then 
         
if ( getElementData( localPlayer ,"ThisAccount") == true ) then 
         
local x, y, z = getElementPosition( vehicle ) 
             
createProjectile ( vehicle , 21, x, y, z) 
  
       end 
    end 
end     ); 

سيرفر

local Accounts = {"Accountname1","Accountname2","Accountname3","OtherAccount"} 
  
addEventHandler ("onResourceStart", root, 
  
    function (  ) 
       
    for i,h in ipairs ( getElementsByType("player") ) do 
       
    removeElementData ( h ,"ThisAccount" ) 
       
    if not isGuestAccount ( getPlayerAccount ( h ) ) then 
         
    local acc = getPlayerAccount ( h ) 
           
    for _,v in ipairs ( Accounts ) do 
           
    if getAccountName ( acc ) == v then 
             
    ThisAcc = getAccountPlayer( acc ) 
             
    setElementData ( ThisAcc ,"ThisAccount", true ) 
  
                end 
            end 
        end 
    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...