27.09.2015, 13:29
Ohh so you're basically using SQLite and blazing user database?
After looking at the example provided at the thread of Slice:
I think that this will do the job, any feedback is appreciated!
After looking at the example provided at the thread of Slice:
pawn Код:
pInfo[playerid][Skin] = GetPlayerSkin(playerid);
new
userid = BUD::GetNameUID( "FIRSTNAME_LASTNAME" ) // This will get the name's unique ID; it's needed to get/set information.
;
if ( userid != BUD::INVALID_UID )
{
BUD::MultiSet( userid, "i", // integer
"skinid", pInfo[playerid][Skin],
);
}

