Files
dsrc/sku.0/sys.server/compiled/game/script/creature/dna_harvest.java
T
2018-03-26 01:21:00 +01:00

34 lines
1.0 KiB
Java
Executable File

package script.creature;
import script.library.bio_engineer;
import script.menu_info;
import script.menu_info_types;
import script.obj_id;
public class dna_harvest extends script.base_script
{
public dna_harvest()
{
}
public int OnObjectMenuRequest(obj_id self, obj_id player, menu_info mi) throws InterruptedException
{
if (getSkillStatMod(player, "dna_harvesting") > 0)
{
mi.addRootMenu(menu_info_types.SERVER_HARVEST_CORPSE, bio_engineer.SID_HARVEST_DNA);
}
return SCRIPT_CONTINUE;
}
public int OnObjectMenuSelect(obj_id self, obj_id player, int item) throws InterruptedException
{
if (item == menu_info_types.SERVER_HARVEST_CORPSE)
{
if (getSkillStatMod(player, "dna_harvesting") > 0)
{
queueCommand(player, (278730949), self, "", COMMAND_PRIORITY_DEFAULT);
return SCRIPT_CONTINUE;
}
}
return SCRIPT_CONTINUE;
}
}