leafice
กระทู้ : 42
| เรื่อง: Auto Spell หรือ Auto Cast สำหรับ SK Fri Nov 15, 2013 5:00 pm | |
| พอดีเก็บไว้นานเลยเอามาลองดูของTKใช้ได้ซะงั้น - Code:
-
################################################ ##ThaiKoreEx :: autoSpell plugin ##This plugin is licensed under the GNU GPL ##This code is modified from Thaikore SVN ##For ThaiKoreEX 2.5 11/05/09 by Ninkoman ##Test on ThaikoreEX 2.5 Hunter Heal Mod. 11/08 ################################################
package autoSpell;
use strict; use Globals; use Plugins; use FileParser; use Utils;
Plugins::register('autoSpell', 'use auto spell for Thaikore EX 2.5', \&Unload);
Plugins::addHook(HOOK_AI_LOCATION_POST, \&ai_location_post);
sub Unload { Plugins::delHook(HOOK_AI_LOCATION_POST, \&ai_location_post); }
sub ai_location_post { return if ($config{autoSpell} eq '' || $config{autoSpell} eq "0");
if ($char->{skills}{SA_AUTOSPELL}{lv} && binFind(\@{$char->{status}}, 65) eq '' && ($AI->isIdle || $AI->is(qw[route route_getMapRoute follow attack memo])) && timeOut(\%{$timeout{autoSpell}})) { if (scalar(@autospellID)) { my $skillAlias = $skills_rlut{lcCht($config{autoSpell})};
if (!ref($char->{skills}{$skillAlias}) || binFind(\@autospellID, $char->{skills}{$skillAlias}{ID}) eq '') { $interface->writeoutput("autoSpell: error skill : ${config{autoSpell}}.\n","yellow"); configModify('autoSpell', 0); } else { $interface->writeoutput("autoSpell: start skill : ${config{autoSpell}}.\n","yellow"); $msgSender->sendAutospell($char->{skills}{$skillAlias}{ID}); $timeout{autoSpell}{time} = time; $timeout{autoSpell}{timeout} = 3; }
undef @autospellID;
} else { $AI->ai_skillUse($char->{skills}{SA_AUTOSPELL}{ID}, $char->{skills}{SA_AUTOSPELL}{lv}, 10, 0, $accountID); } } }
return 1; Save ลงใน Plugin ชื่ออะไรก็ได้ตามใจ ลง .pl นะครับ แล้วเพิ่ม autoSpell Cold Bolt ใน Config ด้วย Cold Bolt สามารถเปลี่ยนเป็นอื่นๆได้ |
|
Fenwick
กระทู้ : 371
| เรื่อง: Re: Auto Spell หรือ Auto Cast สำหรับ SK Sat Nov 16, 2013 8:00 am | |
| TK กับ SK พื้นฐานเดียวกันครับ เลยใช้ได้ครับ ขอบคุณทีแบ่งปั่น ผมก็ยังไม่เคยใช้เลยครับ ส่วนมากจะใช้อาชีพไรครับ |
|
leafice
กระทู้ : 42
| เรื่อง: Re: Auto Spell หรือ Auto Cast สำหรับ SK Sat Nov 16, 2013 9:01 am | |
| - Fenwick พิมพ์ว่า:
- TK กับ SK พื้นฐานเดียวกันครับ เลยใช้ได้ครับ ขอบคุณทีแบ่งปั่น
ผมก็ยังไม่เคยใช้เลยครับ ส่วนมากจะใช้อาชีพไรครับ ใช้กับ Class Sage |
|