summaryrefslogblamecommitdiff
path: root/npc/magic/study.txt
blob: 3176643ef8c2f9e2f12466427a6227d42b4810d1 (plain) (tree)


















                                                                         
// TMW2 script
// Author: Jesusalva <admin@tmw2.org>
//
// Magic Script: TMW2_STUDY
//
// Skill to study a target monster
// Will report the monster exact current stats, and is part of research

function	script	SK_study	{
	.@mobGD=getarg(0);
	if (getunittype(.@mobGD) != UNITTYPE_MOB) {
		dispbottom l("This skill can only be used on monsters!");
	}
	.@mobID=getunitdata(.@mobGD, UDT_CLASS);
	// getmonsterinfo(.@mobID, )
	// getunitdata(.@mobGD, )
	return;
}