vXHazE Posted November 13, 2015 Share Posted November 13, 2015 Hi, does anybody know of any good script where players skins save when they leave and re join the server also a script where i can set the skin that players have when they first login and spawn? Link to comment
1LoL1 Posted November 13, 2015 Share Posted November 13, 2015 Try this: Here or setAccountData getAccountData Link to comment
Rockyz Posted November 13, 2015 Share Posted November 13, 2015 (edited) addEventHandler ( "onPlayerQuit", root, function ( ) local acc = getPlayerAccount ( source ); if ( ( acc ) and not isGuestAccount ( acc ) ) then local gtDATA = getElementModel ( source ); setAccountData ( acc, "SkiN", gtDATA ); end end ); addEventHandler ( "onPlayerLogin", root, function ( _, acc ) local acc = getPlayerAccount ( source ); if ( acc ) then local gtDATA = getAccountData ( acc, "SkiN" ); if ( gtDATA ) then setElementModel ( source, gtDATA ); end end end ); Edited November 19, 2015 by Guest Link to comment
jingzhi Posted November 18, 2015 Share Posted November 18, 2015 Hi, does anybody know of any good script where players skins save when they leave and re join the server also a script where i can set the skin that players have when they first login and spawn? I suggest you using mysql Link to comment
Tekken Posted November 19, 2015 Share Posted November 19, 2015 Hi, does anybody know of any good script where players skins save when they leave and re join the server also a script where i can set the skin that players have when they first login and spawn? I suggest you using mysql You don't need MySQL @#,+( _xiRoc[K]; > already gived the best solution. Link to comment
jingzhi Posted November 19, 2015 Share Posted November 19, 2015 Hi, does anybody know of any good script where players skins save when they leave and re join the server also a script where i can set the skin that players have when they first login and spawn? I suggest you using mysql You don't need MySQL @#,+( _xiRoc[K]; > already gived the best solution. I recommend mysql Link to comment
Rockyz Posted November 19, 2015 Share Posted November 19, 2015 I suggest you using mysql MySQL Is For The Big Projects .. Link to comment
jingzhi Posted November 19, 2015 Share Posted November 19, 2015 I suggest you using mysql MySQL Is For The Big Projects .. Thats because I think everyone has a big dream 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