
Originally Posted by
Troll
Really that simple? Thanks NCDS <3
Yeah and no problem.
The full players type from Players.scar:
Simba Code:
{ type TUser;
Description: The User Record. }
type
TUser = record
Name: string; // * User Name
Pass: string; // * User Pass
Pin: string; // * Current Users Pin Number
Member: boolean; // * For Login
WorldInfo: TVariantArray; // * [Members {Boolean}, World {Integer}, PVP {Boolean}]
Nick: string; // * Screen Name for random detection
{NickTPA: TPointArray; // * TPA Of Player Name}
Level: array[0..24] of Integer; // * Levels of all skills.
Active: Boolean; // * Set to True if Ok, False if Lost.
Loc: string; // * User Location
Status: string; // * User Status
Skill: string; // * User Action to Perform
Worked: Integer; // * Time User has worked
Banked: Integer; // * Number of Banks User has done
Rand: string; // * Current Random
Booleans: array of Boolean; // * For reports, etc.
Integers: array of Integer; // * For reports, etc.
Strings: array of string; // * For reports, etc.
Extendeds: array of Extended; // * For reports, etc.
Arrays: array of TVariantArray; // * For custom arrays.
BoxRewards: TStringArray; // * Partial texts for rewards, place in desired order.
end;
Take a while sometime and read through the include, you'll learn tons.