L2Tower Discord Let's keep the community alive with discord. Discussions about plugins and scripts L2Tower Discord

Post Reply 
 
Thread Rating:
  • 103 Vote(s) - 2.58 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Scripts & Plugins synax
Author Message
ClockMan Offline
All Mighty
*******

Posts: 2,886
Joined: Jan 2011
Reputation: 499
Version: 1.4.3.143
Post: #2
Classes

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);
};

[Image: owner.gif]
(This post was last modified: 04-30-2011 17:35 PM by ClockMan.)
03-31-2011 17:26 PM
Find all posts by this user Quote this message in a reply
Post Reply 


Messages In This Thread
Scripts & Plugins synax - ClockMan - 03-29-2011, 09:27 AM
Classes - ClockMan - 03-31-2011 17:26 PM
Global functions - ClockMan - 03-31-2011, 19:51 PM
RE: Scripts & Plugins synax - ClockMan - 04-30-2011, 17:39 PM
RE: Scripts & Plugins synax - ClockMan - 05-01-2011, 14:44 PM
RE: Scripts & Plugins synax - ClockMan - 05-01-2011, 16:20 PM
RE: Scripts & Plugins synax - Geddys - 06-12-2011, 15:38 PM
RE: Scripts & Plugins synax - Sakaszli - 06-15-2011, 19:25 PM
RE: Scripts & Plugins synax - ClockMan - 06-15-2011, 22:32 PM
RE: Scripts & Plugins synax - ClockMan - 07-24-2011, 19:02 PM
RE: Scripts & Plugins synax - ClockMan - 08-15-2011, 18:18 PM
RE: Scripts & Plugins synax - Sakaszli - 09-18-2011, 19:40 PM
RE: Scripts & Plugins synax - Sakaszli - 09-20-2011, 01:33 AM
RE: Scripts & Plugins synax - Sakaszli - 09-20-2011, 02:36 AM
RE: Scripts & Plugins synax - Sakaszli - 09-25-2011, 02:54 AM
RE: Scripts & Plugins synax - ClockMan - 09-25-2011, 22:20 PM
RE: Scripts & Plugins synax - Sakaszli - 10-08-2011, 16:44 PM
RE: Scripts & Plugins synax - ClockMan - 12-10-2011, 14:32 PM
RE: Scripts & Plugins synax - OxenteBahia - 07-27-2013, 01:13 AM

Possibly Related Threads...
Thread: Author Replies: Views: Last Post
Star help with multibox +tower scripts buybuy 2 4,625 11-13-2015 21:00 PM
Last Post: TheQQmaster
Rainbow GUIDE Very helpful to the beginners. [GUIDEs/ SCRIPTs/ PLUGINs] AStark 57 207,904 05-16-2015 11:08 AM
Last Post: krums
  How to Install Plugins? SinnedK 1 7,642 10-02-2013 08:46 AM
Last Post: l2syrena
Photo Error running Scripts samlong 0 3,793 03-30-2013 06:29 AM
Last Post: samlong
  Plugins API ClockMan 3 17,784 12-25-2011 12:29 PM
Last Post: ClockMan



User(s) browsing this thread: