FVector:
Code:
class FVector
{
float X, Y, Z;
FVector();
FVector(float X, float Y, float Z);
bool IsNonZero();
};
L2Buff:
Code:
class L2Buff
{
enum L2BuffType type;
int skillId;
int skillLvl;
unsigned __int64 endTime;
unsigned char index;
bool IsValid() const;
};
User:
Code:
class User {
const L2Buff* GetBuff(int skillId) const;
bool GotBuff(int skillId) const;
bool IsValid();
bool IsPlayer();
bool IsMyPartyMember();
bool IsFriend();
bool IsMe();
bool IsNpc();
bool IsMyClanMember();
bool IsMyClanMemberMaster();
bool IsMyAllianceMember();
bool IsWalking();
bool IsSiting();
bool IsEnemy();
bool IsPvPFlag();
bool IsPvPFlagBlink();
bool IsAlikeDeath();
bool IsSpoiled();
bool IsPet();
bool IsMyPet();
bool IsSummon();
bool IsPetOrSummon();
bool IsAttacking();
bool WasAttacked();
long GetId();
FVector GetLocation();
int GetHp();
int GetMp();
int GetCp();
int GetMaxHp();
int GetMaxMp();
int GetMaxCp();
double GetHpPrecent();
double GetMpPrecent();
double GetCpPrecent();
int GetLevel();
int GetPenaltyLevel();
int GetSoulLevel();
L2Race GetRace();
int GetStatSTR();
int GetStatDEX();
int GetStatCON();
int GetStatINT();
int GetStatMEN();
int GetStatWIT();
int GetNpcId();
string GetName();
string GetNickName();
int GetWeightLimit();
int GetWeight();
double GetWeightPrecent();
int GetStatAccuracy();
int GetStatCriticalRate();
int GetStatPhysicalAttack();
int GetStatAttackSpeed();
int GetStatPhysicalDefense();
int GetStatEvasion();
int GetStatMagicAttack();
int GetStatMagicDefense();
int GetStatCastingSpeed();
int GetClanId();
int GetClanCrestId();
int GetAllianceId();
int GetAllianceCrestId();
long GetTarget();
L2Class GetClass();
string GetMasterName();
FVector GetDestinationLocation();
bool IsBlocked(bool incStun);
long GetPetId();
long GetMasterId();
bool IsUsingMagic();
bool IsUsingBow();
bool CanSeeMe();
float GetRangeTo(User *player);
int GetMonsterTargetCount();
string GetMasterName();
};
ItemList:
Code:
class ItemList
{
int maxCount;
int count;
list<Item> list;
Item* FindById(int id);
Item* FindByDisplayId(int id);
};
Skill:
Code:
class Skill
{
int skillId;
short skillLvl;
bool isPassive;
string name;
string description;
int operTyp;
int mpConsume;
int hpConsume;
int castRange;
int castStyle;
double hitTime;
bool isMagic;
bool IsSkillAvailable();
bool CanBeUsed();
};
SkillList:
Code:
class SkillList
{
int count;
list<Skill> list;
Skill* FindById(int id);
};
UserList:
Code:
class UserList
{
list<User*> list;
User* GetByName( const string name );
User* GetByTitle( const string name );
int GetCount();
};
Script:
Code:
class Script
{
void Stop();
string GetFilename();
string GetParams();
bool Log(const string &log);
void Pause(); //pause script, user need to resume it in html window or with .scriptResume command.
};
HtmlLink:
Code:
class HtmlLink
{
bool isButton;
bool isTeleport;
string text;
string link;
};
HtmlDialog:
Code:
class HtmlDialog
{
HtmlDialog();
string GetHtml();
string GetLinkForText(const string &title);
string GetTextForLink(const string &link);
list<HtmlLink> links;
void Update();
bool HaveLink(const string &link);
};