diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-03-30 17:01:53 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-03-30 17:01:53 +0000 |
commit | cb55c69231680f1b8cbb6c241a1ca866f1f3754f (patch) | |
tree | 088af1ccd77318dd8ae6866bae63a7810b829c89 /doc | |
parent | 487e633d50f25571dd89b4efc3e737f89376a938 (diff) | |
download | hercules-cb55c69231680f1b8cbb6c241a1ca866f1f3754f.tar.gz hercules-cb55c69231680f1b8cbb6c241a1ca866f1f3754f.tar.bz2 hercules-cb55c69231680f1b8cbb6c241a1ca866f1f3754f.tar.xz hercules-cb55c69231680f1b8cbb6c241a1ca866f1f3754f.zip |
Fixed typos from previous revisions :)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10098 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'doc')
-rw-r--r-- | doc/script_commands.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/script_commands.txt b/doc/script_commands.txt index f6c9c4162..38e5800af 100644 --- a/doc/script_commands.txt +++ b/doc/script_commands.txt @@ -69,6 +69,8 @@ //= Added info on OnTimerQuit label to npctimer section. [Skotlex] //= 3.04.20070317 //= Removed all .gat refferences from the examples [Lupus] +//= 3.04.20070330 +//= Adjusted the 'itemskill' description due to recent change [ultramage] //===== Compatible With =================================== //= LOL, can be used by anyone hopefully //===== Description ======================================= @@ -3821,7 +3823,7 @@ effect is still in effect). --------------------------------------- -*itemskill <skill id>,<skill level>,"<skill name to show>"; +*itemskill <skill id>,<skill level>; This is a command meant for item scripts to replicate single-use skills. It will not work properly in NPC scripts a lot of the time because casting a skill is @@ -3831,7 +3833,7 @@ just fine and even show a targeting pointer if this is a targeting skill. // When you use Anodyne, you will cast Endure(8) level 1, // and "Endure" will appear above your head as you use it. -605,Anodyne,Anodyne,11,2000,0,100,,,,,10477567,2,,,,,{ itemskill 8,1,"Endure"; },{} +605,Anodyne,Anodyne,11,2000,0,100,,,,,10477567,2,,,,,{ itemskill 8,1; },{} --------------------------------------- |