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

Post Reply 
 
Thread Rating:
  • 6 Vote(s) - 2.67 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Skills ID list
Author Message
wrabeczech Offline
VIP Member
***

Posts: 9
Joined: Jul 2013
Reputation: 0
Version: 1.4.3.143
Post: #1
Skills ID list

Anyone have all skills ID list? ty
08-25-2013 14:02 PM
Find all posts by this user Quote this message in a reply
SHOWmeLOVE Offline
Amber Basilisk
*

Posts: 30
Joined: Mar 2012
Reputation: 0
Version: 1.4.2.133
Post: #2
RE: Skills ID list

.recstart skils use some skils then .recstop go in your scripts folder
open the skils.LUA
08-25-2013 20:57 PM
Find all posts by this user Quote this message in a reply
TheQQmaster Offline
Trolling the Trolls
*****

Posts: 1,532
Joined: Jun 2012
Reputation: 640
Version: 1.4.2.133
Post: #3
RE: Skills ID list

hmmmm, check l2t folder and u can find.... L2 Tower/config/ur_path_of_k2/skills.txt O.o it really can be? o.O

PUSH [Image: knUu53] IF HELPED
08-25-2013 22:37 PM
Visit this user's website Find all posts by this user Quote this message in a reply
Karuna Offline
Elpy
*

Posts: 1
Joined: Oct 2013
Version: None
Post: #4
RE: Skills ID list

Please. help me to find skills id for GoD:Glory Days
(This post was last modified: 10-07-2013 12:29 PM by Karuna.)
10-07-2013 12:29 PM
Find all posts by this user Quote this message in a reply
shunda Offline
Expired VIP Member
**

Posts: 67
Joined: Jul 2013
Reputation: 18
Version: 1.4.2.132
Post: #5
RE: Skills ID list

Use this and be happy! Big Grin

Code:
ShowToClient("Script","Skills ID");

SkillToFindId = "Servitor Heal";
miclase = L2Class2String(GetMe():GetClass());
skillList = GetSkills();
for skill in skillList.list do
idaux = tostring(skill.skillId)
nameaux = tostring(skill.name)

    if(nameaux == SkillToFindId) then
ShowToClient("System", "Skill Name : ".. nameaux .. " -> Id : ".. idaux);
    end
end;
10-07-2013 21:50 PM
Find all posts by this user Quote this message in a reply
Vinter Offline
Expired VIP Member
**

Posts: 299
Joined: Sep 2013
Reputation: 109
Version: 1.4.1.128
Post: #6
RE: Skills ID list

To get skills even from mobs I use this plugin:
    LUA Programming
function OnMagicSkillUse(user, target, skillId)
	if user:IsPlayer() and target:IsMe() then
 ShowToClient("SKILL ID",tostring(skillId));
	end
end;



You can change
    LUA Programming
if user:IsPlayer() and target:IsMe() then

to match your needs.
(This post was last modified: 10-09-2013 08:40 AM by Vinter.)
10-09-2013 08:40 AM
Find all posts by this user Quote this message in a reply
cerealKiller Offline
VIP Member
***

Posts: 24
Joined: Nov 2012
Reputation: 5
Version: 1.4.2.142
Post: #7
RE: Skills ID list

Code:
miclase = L2Class2String(GetMe():GetClass());
archivo = "skillList - " .. miclase ..".txt";
ShowToClient("archivo de skill",""..archivo);
local file = io.open(archivo, "a");
skillList = GetSkills();
file:write( "LISTADO DE SKILL PARA LA CLASE ".. miclase .. "\n\n");
for skill in skillList.list do -- lets loop thru the list
    idaux = tostring(skill.skillId)
    nameaux = tostring(skill.name)
    file:write( "Nombre : "..nameaux .. " -> Id : ".. idaux .."\n");
end;
file:close();
work on oficial

create a file ... it habe the name and id of the skill of your class, work in all clasess
(This post was last modified: 10-15-2013 02:16 AM by cerealKiller.)
10-15-2013 02:15 AM
Find all posts by this user Quote this message in a reply
Post Reply 


Possibly Related Threads...
Thread: Author Replies: Views: Last Post
  Interlude skills help evapore 2 2,587 08-02-2015 02:41 AM
Last Post: Fox
  Command list DjNanos 2 5,059 07-28-2015 16:13 PM
Last Post: DjNanos
  about skills drake182 0 1,977 05-27-2015 23:12 PM
Last Post: drake182
  TOGGLE SKILLS aut0matic 3 3,854 05-15-2015 21:21 PM
Last Post: TheQQmaster
  [BUG] Ertheia Skills veinha 3 3,622 04-11-2015 12:12 PM
Last Post: plixplox
  Pet Skills lilscout 3 4,393 03-29-2015 18:07 PM
Last Post: capucine
  Open Window Skills Table benbt91 8 4,890 03-22-2015 08:13 AM
Last Post: benbt91
  SCAMMER MAXIMUS303 FULL CHAR LIST joel2bot 1 2,339 01-20-2015 04:35 AM
Last Post: Fox
  percentage skills reus xanoch666 3 3,185 11-05-2014 16:08 PM
Last Post: Vinter
Information Load or save Skills Setup !! JuZioo 1 2,229 11-01-2014 11:58 AM
Last Post: plixplox



User(s) browsing this thread: 1 Guest(s)