Jump to content

[1.0] skinsaver (buggy) [1.0]


mars

Recommended Posts

Posted

hey guys,

can some1 tell me whats wrong with this:

function onPlayerQuit ( )
     local playeraccount = getPlayerAccount ( source )
     if ( playeraccount ) then
           local playerskin = getPedSkin ( source )
           setAccountData ( playeraccount, "skin", playerskin )
     end
end
 
function onPlayerLogin ( )
     local playeraccount = getPlayerAccount ( source )
     if ( playeraccount ) then
           local playerskin = getAccountData ( playeraccount, "skin" )
           if ( playerskin ) then
                 setPedSkin ( source, playerskin )
           end
     end
end
 
addEventHandler ( "onPlayerQuit", getRootElement ( ), onPlayerQuit )
addEventHandler ( "onPlayerLogin", getRootElement ( ), onPlayerLogin )

thx.

Posted

So what is actually wrong? It saves but doesn't save? Doesn't get the account data? accounts.xml is not updated?

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