View Single Post
  #1  
Old 03-27-2001, 12:04 PM
Tyhm Tyhm is offline
Psionic Youth
Tyhm's Avatar
Join Date: Mar 2001
Location: Babord, West Graal Deaths:1009 Kills:1
Posts: 5,635
Tyhm has a spectacular aura about
All Zulite material goes here. Obviously.

Briefing:

Zulites have no legs, just arms, they're like Bomys sorta, same Skins system, they hop around on one hand when pulling, pushing, carrying, etc. Can't swim, they just walk along the bottom of the ocean, little bubbles come up instead. Some guys were working on graphics and sounds, I made the stomp attack, still need someone with access to the Bomy code to integrate it...
NPC Code:

if(playerenters&&iszulite){
toweapons Stomp;
}
if(weaponfired){
freezeplayer 2;
setani stomp,#s(ZuliteSkin);//Won't work until you have the gani and the skin
sleep 1.5;
for(this.i=0;this.i<objectscount;this.i++){ //I think we have objectscount now...
if(abs(playerx-objects[this.i].x)^2+abs(playery-objects[this.i].y)^2<100){ //Pythagorean theorem, radius=10
hitobject this.i,playerswordpower;
}
}
}


Igneous Zulites live in Volcanos.
Meton Zulites live in the arctic.
Sedimentary Zulites live on islands.

Igneous Zulites can eat rocks to spit fire.
Meton Zulites can stomp.
Sedimentary Zulites actually float.

__________________
"Whatever," said Bean, "I was just glad to get out of the toilet."

"Power does not corrupt. Fear corrupts, perhaps the fear of a loss of power."- John Steinbeck
"I'm only acting retarded, what's your excuse?" queried the Gord.
- My pet, the Levelup Gnome

http://forums.graalonline.com/forums...&postcount=233

Last edited by Tyhm; 03-27-2001 at 12:26 PM..
Reply With Quote