Topic: General Gaming / interactive buddy scripts
awright… run this every frame. it creates baseballs that the buddy will catch. alot of them. basically it makes ur buddy hella happy.
t=t+1;
if(t%3,destroy(STREAM));
if(t%3,assign(STREAM,create(“baseball”,getBuddyX()-30,getBuddyY()-10,9,1,0)))
grenade version. gives more money, but if u already hit ur buddy with grenade, he runs away.
t=t+1;
if(t%3,destroy(STREAM));
if(t%3,assign(STREAM,create(“grenade”,getBuddyX()-30,getBuddyY()-10,9,1,0)))
Swarm of babies beat up buddy!! u get lotsa cash.
t=t+1;
if(t%3,destroy(x));
if(t%3,assign(x,create(“baby”,getBuddyX()-10,getBuddyY(),175,10)))
odd infant script:
t=t+1;
if(t%5,assign(x,create(“baby”,getBuddyY(),getBuddyX(),0,0)));
if(t%5,destroy(x))
EBIL infant script:
t=t+1;
if(t%5,fire(getBuddyY(),getBuddyX(),0,11,0,false)
if(t%5,assign(x,create(“baby”,getBuddyY(),getBuddyX(),0,0)));
if(t%5,destroy(x))