Files
dsrc/sku.0/sys.server/compiled/game/script/item/camp/camp_elite.java
T
2018-06-07 00:32:29 +01:00

17 lines
356 B
Java
Executable File

package script.item.camp;
import script.obj_id;
public class camp_elite extends script.item.camp.camp_base
{
public camp_elite()
{
}
public int OnAttach(obj_id self) throws InterruptedException
{
setObjVar(self, "campPower", 5);
setObjVar(self, "skillReq", 75);
return SCRIPT_CONTINUE;
}
}