NotAvailable Posted May 24, 2010 Share Posted May 24, 2010 (edited) Hi, I got an base on my server We have teams but when someone dies they lose they're skin. So i posted a Request here for a skin save & team save script. Could someone help me? Greetz SOLVED Edited May 25, 2010 by Guest Link to comment
dzek (varez) Posted May 24, 2010 Share Posted May 24, 2010 just dont set the skin argument when doing spawnPlayer.. it should stay untouched then Link to comment
kevin11 Posted May 24, 2010 Share Posted May 24, 2010 (edited) np Edited May 25, 2010 by Guest Link to comment
Jumba' Posted May 25, 2010 Share Posted May 25, 2010 Maybe use element data instead, in case they dont have an account ... Link to comment
NotAvailable Posted May 25, 2010 Author Share Posted May 25, 2010 function onPlayerQuit ( ) local playeraccount = getPlayerAccount ( source ) if ( playeraccount ) then local playerskin = getPedSkin ( source ) setAccountData ( playeraccount, "skin", playerskin ) end end function onPlayerJoin ( ) local playeraccount = getPlayerAccount ( source ) if ( playeraccount ) then local playerskin = getAccountData ( playeraccount, "skin" ) if ( playerskin ) then setPedSkin ( source, playerskin ) end end end function onPlayerSpawn ( ) 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 ( "onPlayerJoin", getRootElement ( ), onPlayerJoin ) addEventHandler ( "onPlayerSpawn", getRootElement ( ), onPlayerSpawn ) Isn´t this save script for when a player leaves? Link to comment
kevin11 Posted May 25, 2010 Share Posted May 25, 2010 im sorry youre right i changed it look i added onPlaterWasted so when he dies his skin saves Link to comment
NotAvailable Posted May 25, 2010 Author Share Posted May 25, 2010 im sorry youre right i changed it look i added onPlaterWasted so when he dies his skin saves Yo thanks Link to comment
NotAvailable Posted May 25, 2010 Author Share Posted May 25, 2010 im sorry youre right i changed it look i added onPlaterWasted so when he dies his skin saves Cool its like: Login save skin + death save skin Link to comment
kevin11 Posted May 25, 2010 Share Posted May 25, 2010 no its leave+save and death+save Link to comment
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now