mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-13 22:01:04 -04:00
34 lines
1.0 KiB
Java
Executable File
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;
|
|
}
|
|
}
|