Jump to content

No response


Newbie

Recommended Posts

function car( player, cmd ) 
    local account = ( ( getPlayerAccount( player ) and not isGuestAccount( getPlayerAccount( player ) ) ) and getPlayerAccount( player ) or false ) 
    if ( account ) then 
        local cashHave = tonumber( getAccountData( account, "cash" ) ) 
        if ( cashHave ) and ( cashHave >= 1 ) then 
            setTimer(setElementModel,1000,1,vehicle,math.random(399, 609)) 
            outputChatBox( "* " .. getPlayerName( player ) .. " bought a random car.", root, 255, 255, 255, false ) 
            setAccountData( account, "cash", cashHave - 1 ) 
        else 
            outputChatBox( "* You need more cash.", player, 255, 255, 255, false ) 
        end 
    else 
        outputChatBox( "* You're not logged in.", player, 255, 255, 255, false ) 
    end 
end 
addCommandHandler( "car", car ) 

I should get a random car, but i dont.

Edited by Guest
Link to comment
function car( player, cmd ) 
    local account = ( ( getPlayerAccount( player ) and not isGuestAccount( getPlayerAccount( player ) ) ) and getPlayerAccount( player ) or false ) 
    if ( account ) then 
        local cashHave = tonumber( getAccountData( account, "cash" ) ) 
        if ( cashHave ) and ( cashHave >= 1 ) then 
            local vehicle = getPedOccupiedVehicle(player) 
            setTimer(setElementModel,1000,1,vehicle,math.random(399, 609)) 
            outputChatBox( "* " .. getPlayerName( player ) .. " bought a random car.", root, 255, 255, 255, false ) 
            setAccountData( account, "cash", cashHave - 1 ) 
        else 
            outputChatBox( "* You need more cash.", player, 255, 255, 255, false ) 
        end 
    else 
        outputChatBox( "* You're not logged in.", player, 255, 255, 255, false ) 
    end 
end 
addCommandHandler( "car", car ) 

Did it!

Thanks for help. :)

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...