Massassi Forums Logo

This is the static archive of the Massassi Forums. The forums are closed indefinitely. Thanks for all the memories!

You can also download Super Old Archived Message Boards from when Massassi first started.

"View" counts are as of the day the forums were archived, and will no longer increase.

ForumsCog Forum → Setting all surfaces in a level as translucent in an irgoggles-esque item
Setting all surfaces in a level as translucent in an irgoggles-esque item
2003-01-27, 12:21 PM #1
Is it possible to flag all the surfaces of a level to translucent locally within some kind of irgoggles inventory item thing? I do realise this would cause HOM, but thats the idea, cos if its only translucent the HOM effect 'fades' Anyway, erm, yeah, any way to do it?

Cheers,
Tom
…and then Jack chopped down the beanstalk, adding murder and ecological vandalism to the theft, enticement and trespass charges already mentioned…

-System Override

Head of the AliensTC

Proud rebel against the evil AC empire
2003-01-27, 2:32 PM #2
Here we go.

Activation
Code:
Heapnew(0, Getsurfacecount()+1);
For(i=0; i<=Getsurfacecount(); i=i+1)
{
   If(GetSurfaceGeoMode(i) < 3) Return;
   If(GetFaceType(i) != 2) Heapset(i, 2);
   Else (HeapSet(i, 0);
   SetFaceType(i, 0x2);
}


Revert
Code:
For(i=0; i<=GetSurfaceCount(); i=i+1)
   ClearFaceType(i, HeapGet(i));
HeapFree();
Any questions? [http://forums.massassi.net/html/smile.gif]


------------------
The Sniper Missions. Current project, The Sniper Missions

The Magician Saber System.
Major projects working on:
SATNRT, JK Pistol Mod, Aliens TC, Firearms

Completed
Judgement Day (HLP), My level pack
2003-01-27, 5:08 PM #3
Ahh, the heap verbs. Making even the most daunting of tasks trivial. [http://forums.massassi.net/html/smile.gif]
And when the moment is right, I'm gonna fly a kite.
2003-01-28, 10:31 AM #4
Well, erm, no, that about covers it [http://forums.massassi.net/html/smile.gif]
…and then Jack chopped down the beanstalk, adding murder and ecological vandalism to the theft, enticement and trespass charges already mentioned…

-System Override

Head of the AliensTC

Proud rebel against the evil AC empire

↑ Up to the top!