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 → Startup text for mp level
Startup text for mp level
2001-04-09, 3:56 PM #1
k i know its

startup:

print("Welcome ect...");

return;

but i have no idea how to make the cog and get it to work.
My Site
2001-04-09, 5:16 PM #2
Quite simple:

Code:
# Jedi Knight Cog Script
#
# welcome.COG
#
# WhiteLightsaber's cog... give me some 
# credit..
# 1 bug, must have at least .0001 second
# printing message
# 
# This Cog is Not supported by LucasArts Entertainment Co

symbols

Int pause

Message startup
end                                                                           

# ========================================================================================

code
Sleep(pause);
Print("Your message here");
Return;
# ........................................................................................

end


Thats about it. Simple cog.
2001-04-10, 10:15 AM #3
its still wont work. this is what i did

# Jedi Knight Cog Script
#
# Filename.COG
#
# Description
# WhiteLightsabers cog. Respect! 1 bug give at least .0001 second printing message
#
# This Cog is Not supported by LucasArts Entertainment Co

symbols
Int pause
Message startup
end

# ========================================================================================

code
Sleep(pause);
Print("Wake Up Neo... The Matrix Has You.....")
Return:
# ........................................................................................

end

is this right?
My Site

↑ Up to the top!