jockmo42 has written
But I want to catch some things that don't even register with the net in the game. I think you're talking about bugs like snails, that just die when they are netted, but I want to add new creatures that are able to be caught. I there a way to do this?
ya.
here is an example:
### Big Snail
id=//choose the id after the last animal
name=Big Snail
group=animal
icon=gfx\snail.bmp
model=gfx\snail.b3d
scale=1.5
colxr=8
colyr=5
shine=0.4
behaviour=animal
mat=flesh
health=8
speed=0.05
turnspeed=0.3
ani_move=7,8,0.01
ani_idle1=1,3,0.01
ani_idle2=3,5,0.01
ani_die=5,6,0.05
loot=//first enter the item id then write ",",then how many items
script=start
on:catch {
if (lives("self")==1){
local $id;
$id=create("item",99);
store $id,"unit",1;
speech "positive";
msg "Caught snail",4;
script=end