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 → new effect....
new effect....
2001-04-22, 1:57 PM #1
Here is what I want to make: i have a sector in wich i can literally fly around (just like the SP cheat "eriamjh")
Do you know if there is a way to simulate this? underwater flag isn't good...
"Elisa, volerò per raggiungerti"
-------------------------------------------
GTD Swiss Pride - Orion Class
Swiss 1st Fleet, Sector 32 - Ore Belt - Sol
-------------------------------------------
"I'm an engineer!"
http://www.jediknight.it
2001-04-22, 2:02 PM #2
i can make u one, give me a bit

------------------
Join the army,
Visit new places,
Meet new people,
Then drop bombs on them

[This message has been edited by Han5678 (edited April 22, 2001).]
roses are red, violets are blue, I am schizophrenic, and I am too!
2001-04-22, 2:24 PM #3
Code:
symbols
sector      nograv                         
thing       player                           local
message     startup
message     entered
message     exited
end
code
startup:
player = GetLocalPlayerThing();
Return;
entered:
SetThingFlags(player,0x2000);
Return;
entered:
ClearThingFlags(player,0x2000);
Return;
end

that code should work but i might have the flags wrong

------------------
Join the army,
Visit new places,
Meet new people,
Then drop bombs on them
roses are red, violets are blue, I am schizophrenic, and I am too!
2001-04-22, 6:12 PM #4
I just fixed it up a bit... [http://forums.massassi.net/html/wink.gif]

Code:
symbols
sector      nograv
thing       player             local
message     startup
message     entered
message     exited   
end

code
startup:
player = GetLocalPlayerThing{);
Return;
entered:
SetPhysicsFlags(player,0x2000);
ClearPhysicsFlags(player, 0x1);
Return;
exited:
ClearPhysicsFlags(player,0x2000);
SetPhysicsFlags(player, 0x1);
Return;
end


[This message has been edited by The_New_Guy (edited April 22, 2001).]
- Wisdom is 99% experience, 1% knowledge. -
2001-04-23, 3:38 AM #5
Thank you guys! hope this will work in multiplayer too [http://forums.massassi.net/html/smile.gif]

a preview of the level. Not even textured...
The central sector (where the player is) should be with lowgrav: actually I'm going to modify the COG a little, so that the player may be able to activate and deactivate it (immagine your enemy is standing on top of sector... KABOOOM!)

[http://mypage.bluewin.ch/p98/images/jk/Shot1.jpg]

------------------


[This message has been edited by CmdKewin (edited April 23, 2001).]
"Elisa, volerò per raggiungerti"
-------------------------------------------
GTD Swiss Pride - Orion Class
Swiss 1st Fleet, Sector 32 - Ore Belt - Sol
-------------------------------------------
"I'm an engineer!"
http://www.jediknight.it
2001-04-23, 11:20 AM #6
yeah sorry i forgot the physics flags thanks for fixing that newguy
roses are red, violets are blue, I am schizophrenic, and I am too!

↑ Up to the top!