Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - DarkKnight

Pages: [1] 2 3 4
1
AoT General / Vista and Age of time?
« on: July 03, 2007, 07:37:05 PM »
How well does age of time work on vista ultimate?  I won it from microsoft so I need to know.

2
AoT General / Movie Script.
« on: June 16, 2007, 11:01:19 PM »
I'm working on a movie script.  Here are some demo videos.

http://www.youtube.com/watch?v=6vEp3UBYUwo

Demo 2:
http://www.youtube.com/watch?v=MSpp_SlEVF0

You can set a follow player delay, or just keep it where it is!

3
AoT General / Lighting
« on: June 15, 2007, 06:52:10 PM »
Use lightScene(); while in game.  It will make stuff look better.  :D

4
Forum Games / Gmod Challenge Server [Part of Gmod challenge]
« on: June 12, 2007, 11:44:57 PM »
SERVER IS UP!
IP - 76.98.152.109
Server Name - Dark's Server
Map - Flatgrass



Starting 2morrow I will be hosting a server for the Gmod challenge.  I will announce when the server is up.  There will be a max of 5 players and the map will be spacebuild_v3 or Flatgrass.  So make sure you have the maps!

There are TONS of addons so don't worry about missing something!  You may not use the adv dup to load any builds only to save!  All times are EST.

5
AoT General / [How-to] Replacing Colors
« on: June 10, 2007, 03:17:18 PM »
Here is code to replace the colors if you don't like what they are set to now.

Code: [Select]
//.....Start color edits
   GuiButtonProfile.fontcolor="0 0 0"; // Button Color
   GuiProgressProfile.fillcolor="255 0 0"; // Progress bar color.
   CenterPrintProfile.fontcolor="255 122 30"; // Center print color.
   CenterPrintTextProfile.fontcolor="255 122 30"; // Center print color.
   ChatHudMessageProfile.fontType = "Lucida Sans"; // Font style
   ChatHudMessageProfile.fontSize = 10; // font size.
   ChatHudMessageProfile.fontColor = "34 139 34";      // Main Colour
   ChatHudMessageProfile.fontColors[1] = "0 0 128";   // Navy color for joining and stuff.
   ChatHudMessageProfile.fontColors[2] = "255 0 0"; // Red PM color.
   ChatHudMessageProfile.fontColors[3] = "255 0 0";   // Red  Server Messages.
   ChatHudMessageProfile.fontColors[4] = "255 69 0";  // Chat color.
//.....End Color Edits

then in main.cs

Code: [Select]
function loadedits()
{
   exec("base/FILENAMEHERE.cs");
}

then under exec("base/data/init.cs"); add

Code: [Select]
   schedule(2000,0,loadedits); //set to 2000 for slower computers

6
AoT General / It's all Ephi's fault
« on: June 07, 2007, 05:18:24 PM »
He's the one that got a reset from bragging about the chest cheat!

lol, I made one within 30 mins of reset xD

7
Help / Can't Install 1.03
« on: June 06, 2007, 09:39:23 AM »
Near the end of the install it says that some install files are corrupt

8
AoT General / Aot Crash
« on: June 05, 2007, 02:51:43 PM »
Aot crashed just now.

9
Modification Help / Getting trandform Clientside?
« on: June 04, 2007, 11:28:35 PM »
How do I get it client side??

10
AoT General / EVENT: Find the note!
« on: June 04, 2007, 09:25:17 AM »

EVENT OVER

11
AoT General / 1337 Fiber
« on: June 02, 2007, 01:26:53 PM »
I have 1337 fiber

12
General Discussion / Quick Reply?
« on: June 01, 2007, 11:31:42 PM »
How do I turn on quick reply?

13
Modification Help / Warp Script
« on: June 01, 2007, 03:43:23 PM »
When re-learning Torque to help me scripts better i made a simple warp script!


Code: [Select]
$meta = 50;
function serverCmdWarpPlayer(%client)
{
%client.player.setCloaked(1);
%avatar = %client.player;
%eyeVector = %avatar.getEyeVector();
%warpVector = vectorScale(%eyeVector,$meta);
%currentPos = %avatar.getPosition();
%newpos = vectorAdd(%currentPos,%warpVector);
%currentTrans = %avatar.getTransform();
%orientation = getWords(%currentTrans, 3);
%newtransform = %newpos SPC %orientation;
%avatar.setTransform(%newTransform);
%client.player.setCloaked(0);
}

Aim up to warp up
Aim down to warp down
Aim left to warp left
Aim right to warp right.

Where ever you AIM is where you will warp.

use commandtoserver('warpplayer');

set $meta = 50;  to the meters you want

14
AoT General / Server Count Wrong
« on: May 26, 2007, 12:43:50 PM »
it always say's 0 now...

15
AoT General / Temp Server
« on: May 16, 2007, 03:29:13 PM »
I'm hosting a temp server till the official server is up.

Get the client here

http://www.aotmod.php0h.com/12/

Pages: [1] 2 3 4