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

17 lines
355 B
Java
Executable File

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