Hi everyone, may i request a plagiarism npc also known as copy cat?
I've tried some of the script here but it seems like it is not working because after i choose a skill my character just stock on the screen and i need to use Alt + F4 to move again.
Also i didn't get any skills using a stalker/chaser job. When i use a GM Account and i use this NPC using "Other" job like priest i've also stock and boom map crashed. ?
gonryun,167,109,4 script Copy Cat 779,{
mes "select which skill you want to be copy, your existing one will be overwrite";
next;
set .@menu, select(.menu$) -1;
if ( getskilllv(.skill$[.@menu * 3 +1]) && .skill$[.@menu * 3 +1] ) {
mes "you already copied that skill";
close;
}
else if ( .skill$[.@menu * 3 +1] ) {
mes "are you sure you want to copy "+ .skill$[.@menu * 3] +"?";
}
mes "you'll need to relogin again";
next;
if ( select ( "Yes", "No" ) == 2 ) close;
set CLONE_SKILL, .skill$[.@menu * 3 +1];
set CLONE_SKILL_LV, .skill$[.@menu * 3 +2];
atcommand "@kick "+ strcharinfo(0);
end;
OnInit:
setarray .skill$,
"< Remove >", 0, 0,
"Bash", 5, 3,
"Provoke", 6, 5,
"Magnum Break", 7, 5,
"Napalm Beat", 11, 5,
"Soul Strike", 13, 5,
"Cold Bolt", 14, 5,
"Frost Diver", 15, 3,
"Fire Ball", 17, 5,
"Fire Bolt", 19, 3,
"Lightning Bolt", 20, 5,
"Thunderstorm", 21, 3,
"Mammonite", 42, 5,
"Double Strafe", 46, 3,
"Arrow Shower", 47, 5,
"Brandish Spear", 57, 5,
"Spear Stab", 58, 3,
"Spear Boomerang", 59, 5,
"Bowling Bash", 62, 3,
"Magnus Exorcismus", 79, 5,
"Fire Pillar", 80, 5,
"Meteor Storm", 83, 3,
"Jupitel Thunder", 84, 3,
"Lord of Vermilion", 85, 3,
"Water Ball", 86, 2,
"Frost Nova", 88, 3,
"Storm Gust", 89, 3,
"Earth Spike", 90, 3,
"Heaven's Drive", 91, 3,
"Land Mine", 116, 3,
"Blast Mine", 122, 5,
"Claymore Trap", 123, 5,
"Sonic Blow", 136, 5,
"Holy Light", 156, 5,
"Holy Cross", 253, 5,
"Grand Cross", 254, 5,
"Raging Trifecta Blow", 263, 3,
"Occult Impaction", 266, 3,
"Throw Spirit Sphere", 267, 5,
"Asura Strike", 271, 3,
"Raging Quadruple Blow", 272, 5,
"Throw Tomahawk", 337, 5,
"Flying Kick", 421, 3,
"Throw Zeny", 526, 3,
"Improvised Defense", 527, 5,
"Vanishing Slash", 528, 5,
"Shadow Leap", 529, 3,
"Shadow Slash", 530, 3,
"Cicada Skin Sheeding", 531, 3,
"Crimson Fire Petal", 534, 3,
"Crimson Fire Formation", 535, 5,
"Raging Fire Dragon", 536, 3,
"Spear of Ice", 537, 3,
"Ice Meteor", 539, 3,
"Wind Blade", 540, 3,
"Lightning Strike of Destruction", 541, 5,
"Kamaitachi", 542, 3,
"Charge Attack", 1001, 5,
"Throw Venom Knife", 1004, 3,
"Sight Blaster", 1006, 5,
"Phantasmic Arrow", 1009, 5,
"Ki Translation", 1015, 5,
"Rapid Throw", 3008, 5;
set .@skillsize, getarraysize(.skill$);
for ( set .@i,0; .@i < .@skillsize; set .@i, .@i +3 )
set .menu$, .menu$ + .skill$[.@i] +":";
end;
}