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 → HELP! Cpu is DYING ... BLOOD all over!!!!!
HELP! Cpu is DYING ... BLOOD all over!!!!!
2000-09-18, 12:04 PM #1
Well not really.. but it did get your attention. Anyway I am making a level and I need a cogger to create a teleport cog for a me. I know nothing of cog. I stopped thinking about it after DFs .inf files. (and those who worked on DF that .inf = hell). Please desperately needed... If not then my CPU will die and I would have to get a new one... you would not want me to buy a new one, now would you? [http://forums.massassi.net/html/smile.gif]


P.S. I deeply apologize for the Caps. I tried not to have all words in Caps. I know it gets annoying.

Gel

------------------
<beep> <beep> <beep> BOOOOOOOM!!!! hehe Mine King strikes again....


[This message has been edited by AdmWarlord (edited September 18, 2000).]
2000-09-18, 2:21 PM #2
what exactly do you want?

------------------
There are no evil coggers, only evil cogs...

[url="mailto:no_oneatall@hotmail.com"]mailto:no_oneatall@hotmail.com[/url]no_oneatall@hotmail.com</A>
ICQ 81116825
===========================================
Evil Cog master of the Western TC!
cogs dont kill people. people kill people...

mailto:no_oneatall@hotmail.comno_oneatall@hotmail.com</A>
ICQ 81116825
==============================================
((Evil Cog Master))
2000-09-18, 2:26 PM #3
I got a Displacer Cannon which uses templates with a special cog that can teleport you to person/place/thing or vice versa. You want it? I got it. You gonna give me credit? I will give it to you. You ain't gonna give me credit? Go find someone else. By the way, Fernando the Hunn is a good guy, he helped me a lot a few short days ago. GO FERN!!!

The way it REALLY happened...
*Stormtrooper talking to Luke and Obi-wan in Mos Eisly* "Go on, old man, don't worry about using Force mind tricks on me, everybody playing JK knows what lousy shots us stormies are..."
2000-09-18, 2:44 PM #4
Of course I will you credit. But you'd have to show an idiot some explanations, cause I know nothing about COGs [http://forums.massassi.net/html/smile.gif]. Email me or something.

P.S. I am looking specifically for :P

IF PLAYER A activates THING #X
THEN move PLAYER A to SECTOR #Y

[This message has been edited by AdmWarlord (edited September 18, 2000).]
2000-09-18, 2:52 PM #5
you worked on Dark Forces?
I'm just an old man with a skooma problem.
2000-09-18, 3:58 PM #6
Yes I have... and if you remind me of them .INF files again I will go insane... [http://forums.massassi.net/html/frown.gif]

Class: Elevator_move floor
Event_mask .......

These are bad flashbacks... I am going to have nightmares....

[This message has been edited by AdmWarlord (edited September 18, 2000).]

[This message has been edited by AdmWarlord (edited September 18, 2000).]
2000-09-22, 9:00 AM #7
well, this will teleport the player to a ghost pos when they enter the sector:
Code:
# Teleport cog by lordvader
#
# teleport.cog
#
# This cog is not supported by LucasArts
symbols
message entered
message startup
sector room
thing player
thing ghost
end

code
startup:
player=GetLocalPlayerThing();

entered:
if(GetSenderRef()=room)
   {
   TeleportThing(player, GetThingPos(ghost));
   }
end
Capitalization
Commas
Periods
Question Marks
Apostrophes
Confusable Words
Plague Words
2000-09-23, 12:28 AM #8
yeah, change entered: to activated: though.

------------------
There are no evil coggers, only evil cogs...

[url="mailto:no_oneatall@hotmail.com"]mailto:no_oneatall@hotmail.com[/url]no_oneatall@hotmail.com</A>
ICQ 81116825
===========================================
Evil Cog master of the Western TC!
cogs dont kill people. people kill people...

mailto:no_oneatall@hotmail.comno_oneatall@hotmail.com</A>
ICQ 81116825
==============================================
((Evil Cog Master))
2000-09-29, 10:12 AM #9
Here's the new, revised, simplfied, generally happier version:
Code:
# Teleport cog by lordvader
#
# teleport.cog
#
# This cog is not supported by LucasArts
symbols
message entered
message startup
thing touchme
thing player
thing ghost
end

code
startup:
player=GetLocalPlayerThing();

activated:
TeleportThing(player, GetThingPos(ghost));
end
Capitalization
Commas
Periods
Question Marks
Apostrophes
Confusable Words
Plague Words
2000-09-29, 12:40 PM #10
Post relevant topic and posts otherwise gets closed. Not this time.

I don't like irrelevant topics [http://forums.massassi.net/html/frown.gif]

------------------
http://millennium.massassi.net/ - Millennium

[This message has been edited by Hideki (edited September 29, 2000).]
2000-09-30, 6:41 AM #11
add some "return;"s (before activated: and end) and I think you will be set. [http://forums.massassi.net/html/smile.gif]

------------------
There are no evil coggers, only evil cogs...

[url="mailto:no_oneatall@hotmail.com"]mailto:no_oneatall@hotmail.com[/url]no_oneatall@hotmail.com</A>
ICQ 81116825
===========================================
Evil Cog master of the Western TC!
cogs dont kill people. people kill people...

mailto:no_oneatall@hotmail.comno_oneatall@hotmail.com</A>
ICQ 81116825
==============================================
((Evil Cog Master))
2000-10-01, 11:47 AM #12
A simplified version would look like this:

_____________________________________________
#
# Teleport.cog
#
# Teleports player to another object
# Cog whipped up by The White Lightsaber
#

symbols

Thing Teleport_from desc=Use_this_to_activate
Thing Teleport_to desc=use_this_to_teleport_to

Message activated

end

code
activated:
TeleportThing(GetLocalPlayerThing(), Teleport_to);
Return;
end
_____________________________________________

And DF .inf files were not that hard to program. Although the cog language is better. Arcitecture in DF was a lot easier, too.

------------------
I've been through it all, creating a jedi league the the Gold Sabers and am known as The White Lightsaber for I always carry a white lightsaber for I am powerful in the force...
2000-10-03, 8:18 AM #13
Here's the simplified version:
Code:
#Teleport.cog
#This cog would make it possible to teleport

J/K, actually there is a working cog somewhere in the downloadable files!
2000-10-04, 11:12 AM #14
I think there is a teleport cog at massassi? i have one any ways if you need it give me a shout: ubuusan@massassi.net
Word to your momma - Vanilla Ice

↑ Up to the top!