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.


Messages - Kalphiter

Pages: 1 ... 1831 1832 1833 1834 1835 [1836] 1837 1838 1839 1840 1841 ... 2027
27526
Maps / Re: Blockway V3
« on: June 04, 2009, 07:30:13 PM »
Is this supposed to be Midway?

27527
Add-Ons / Re: Fooly Fun Cmds v3.2
« on: June 04, 2009, 07:29:24 PM »
Anyone know where fooly went? He hasn't been on for like 2 weeks :(
I ate him.

27528
Off Topic / Re: Kbyet Hosting
« on: June 04, 2009, 07:28:36 PM »
...

but I wanna post research on your image server...
Already posted this.



Yo momma.





http://img.kbyet.com/gallery.php

27529
Drama / Re: Dumbasses locking Topics
« on: June 04, 2009, 07:26:07 PM »
So, guess you're forced to leave drama topics open :)

27530
Off Topic / Re: Kbyet Hosting
« on: June 04, 2009, 07:21:46 PM »
Bump

Shows how alive this is.

27531
Modification Help / Stereo in a vehicle
« on: June 04, 2009, 07:10:54 PM »
Well, Truce has created it

When being the driver of a vehicle, you type /stereo and a server-sided GUI pops up. You then choose from the list of music.

Also, if you use a slot for sounds above the amount the vehicle gives you, it defaults to 0,0,0. Useful fact for me.

27532
Drama / Re: Good servers facing Extinction
« on: June 04, 2009, 06:56:27 PM »
Join Hephaestus' server.

27533
Off Topic / Re: Wish Granted, but...
« on: June 04, 2009, 04:45:18 PM »
Granted, but there was no wish to grant.

I wish that he had made a wish instead of claiming a word as his own.

27534
Mapping Help / Re: [TUT] Opening mission editor/GUI editor(Windows)
« on: June 04, 2009, 03:33:42 PM »
Alternate method



Code: (BATCH) [Select]
start blockland.exe -mod editor
Make a file called anything.bat, in the BL directory.
Now shortcut to it or simply click on anything.bat

27535
General Discussion / Re: { ID List 5.0 }
« on: June 04, 2009, 03:24:24 PM »
I am also ID 6671, for I.D. 6671 can you put Doomdoomdoom/Xia? I am doomdoomdoom's (killer5000's) older bro.
I do not add alternate names.

I've seen Doomdoomdoom more, so it's staying as Doomdoomdoom.

27536
Modification Help / Re: Train mod plans
« on: June 04, 2009, 07:33:24 AM »
Script_Trains will control all train functions, such as speed adjustment, horn, bell, sounds.

Vehicle_Train_Box will be a normal vehicle like the following.

Code: (Torque) [Select]
datablock WheeledVehicleData(BoxTrain)
{

//blah

}


function BoxTrain::onadd(%this, %obj)
{
    parent::onadd(%this,%obj);
    %obj.isTrain = true;
    %obj.hornDelay = 85;
    TrainMOD.addTrain(%obj, "BoxTrain");
}

27537
Modification Help / Re: Picture
« on: June 03, 2009, 09:12:54 PM »
Doscreenshot. There, type doscreenshot(); into the console.
Let him figure it out himself.

27538
Modification Help / Train mod plans
« on: June 03, 2009, 09:08:37 PM »
Alright, here are the plans

In the next version, a new add-on, Script_Trains, will be released. This will make trains compatible, and would control all trains, instead Vehicle_Train_Box controlling itself.

The point of doing that is so train vehicles(if any in the future) will have the least amount of code while Script_Trains handles everything.

The expected release date for the script is July 31 anytime this summer.

Randy has also helped with a now-working /aligntrain [direction] command.

New GUI



Now, we want to work on a new train. Stratofortress said he "bailed" so I need to find a new person to model. Anyone?



DE30AC




Article: http://blockland.kalphiter.com/?p=1

27539
Modification Help / Re: Picture
« on: June 03, 2009, 08:52:38 PM »
Find it.

Code: (torque) [Select]
// Torque Input Map File
moveMap.delete();
new ActionMap(moveMap);
moveMap.bindCmd(keyboard, "escape", "", "escapeMenu.toggle();");
moveMap.bind(keyboard, "w", moveforward);
moveMap.bind(keyboard, "s", movebackward);
moveMap.bind(keyboard, "a", moveleft);
moveMap.bind(keyboard, "d", moveright);
moveMap.bind(keyboard, "space", Jump);
moveMap.bind(keyboard, "lshift", Crouch);
moveMap.bind(keyboard, "c", Walk);
moveMap.bind(keyboard, "f", toggleZoom);
moveMap.bind(keyboard, "z", toggleFreeLook);
moveMap.bind(keyboard, "tab", toggleFirstPerson);
moveMap.bind(keyboard, "f8", dropCameraAtPlayer);
moveMap.bind(keyboard, "f7", dropPlayerAtCamera);
moveMap.bind(keyboard, "t", GlobalChat);
moveMap.bind(keyboard, "y", TeamChat);
moveMap.bind(keyboard, "pageup", PageUpNewChatHud);
moveMap.bind(keyboard, "pagedown", PageDownNewChatHud);
moveMap.bind(keyboard, "m", ToggleCursor);
moveMap.bind(keyboard, "1", useBricks);
moveMap.bind(keyboard, "q", useTools);
moveMap.bind(keyboard, "e", useSprayCan);
moveMap.bind(keyboard, "ctrl w", dropTool);
moveMap.bind(keyboard, "2", useSecondSlot);
moveMap.bind(keyboard, "3", useThirdSlot);
moveMap.bind(keyboard, "4", useFourthSlot);
moveMap.bind(keyboard, "5", useFifthSlot);
moveMap.bind(keyboard, "6", useSixthSlot);
moveMap.bind(keyboard, "7", useSeventhSlot);
moveMap.bind(keyboard, "8", useEighthSlot);
moveMap.bind(keyboard, "9", useNinthSlot);
moveMap.bind(keyboard, "0", useTenthSlot);
moveMap.bind(keyboard, "ctrl z", undoBrick);
moveMap.bind(keyboard, "lalt", toggleSuperShift);
moveMap.bind(keyboard, "ctrl a", openAdminWindow);
moveMap.bind(keyboard, "ctrl o", openOptionsWindow);
moveMap.bind(keyboard, "ctrl p", doScreenShot);
moveMap.bind(keyboard, "ctrl k", Self Delete);
moveMap.bind(keyboard, "shift p", doHudScreenshot);
moveMap.bind(keyboard, "shift-ctrl p", doDofScreenShot);
moveMap.bind(keyboard, "f2", showPlayerList);
moveMap.bind(keyboard, "ctrl n", toggleNetGraph);
moveMap.bind(keyboard, "f3", ToggleBuildMacroRecording);
moveMap.bind(keyboard, "b", openBSD);
moveMap.bind(keyboard, "f5", ToggleShapeNameHud);
moveMap.bind(keyboard, "period", NextSeat);
moveMap.bind(keyboard, "comma", PrevSeat);
moveMap.bind(keyboard, "numpad8", shiftBrickAway);
moveMap.bind(keyboard, "numpad2", shiftBrickTowards);
moveMap.bind(keyboard, "numpad4", shiftBrickLeft);
moveMap.bind(keyboard, "numpad6", shiftBrickRight);
moveMap.bind(keyboard, "+", shiftBrickUp);
moveMap.bind(keyboard, "numpad5", shiftBrickDown);
moveMap.bind(keyboard, "numpad3", shiftBrickThirdUp);
moveMap.bind(keyboard, "numpad1", shiftBrickThirdDown);
moveMap.bind(keyboard, "numpad9", RotateBrickCW);
moveMap.bind(keyboard, "numpad7", RotateBrickCCW);
moveMap.bind(keyboard, "numpad0", cancelBrick);
moveMap.bind(keyboard, "l", useLight);
moveMap.bind(keyboard, "alt numpad8", superShiftBrickAwayProxy);
moveMap.bind(keyboard, "alt numpad2", superShiftBrickTowardsProxy);
moveMap.bind(keyboard, "alt numpad4", superShiftBrickLeftProxy);
moveMap.bind(keyboard, "alt numpad6", superShiftBrickRightProxy);
moveMap.bind(keyboard, "alt +", superShiftBrickUpProxy);
moveMap.bind(keyboard, "alt numpad5", superShiftBrickDownProxy);
moveMap.bind(keyboard, "ctrl e", invLeft);
moveMap.bind(keyboard, "f12", toggleInGameWindow);
moveMap.bind(keyboard, "backslash", emoteSit);
moveMap.bind(keyboard, "shift 1", emoteAlarm);
moveMap.bind(keyboard, "shift /", emoteConfusion);
moveMap.bind(keyboard, "f4", PlayBackBuildMacro);
moveMap.bind(keyboard, "ctrl l", emoteLove);
moveMap.bindCmd(keyboard, "ctrl c", "", "canvas.pushDialog(pttagui);");
moveMap.bind(keyboard, "ctrl t", TW_Open);
moveMap.bind(keyboard, "ctrl m", toggleTDMgui);
moveMap.bind(keyboard, "shift f12", RTBIC_toggleIRC);
moveMap.bind(keyboard, "numpadenter", plantBrick);
moveMap.bind(keyboard, "shift f9", toggleMacroWindow);
moveMap.bind(keyboard, "h", togglebellcommand);
moveMap.bind(keyboard, "ctrl s", LSG_OG);
moveMap.bind(keyboard, "ctrl r", RainbowPlayerToggle);
moveMap.bind(keyboard, "alt c", clientCmdopenCellPhone);
moveMap.bind(keyboard, "alt t", clientCmdopenCellMessagePhone);
moveMap.bind(keyboard, "shift v", startRecordingDemo);
moveMap.bind(keyboard, "alt v", stopRecordingDemo);
moveMap.bind(mouse0, "xaxis", yaw);
moveMap.bind(mouse0, "yaxis", pitch);
moveMap.bind(mouse0, "button0", mouseFire);
moveMap.bind(mouse0, "button1", Jet);
moveMap.bind(mouse0, "zaxis", scrollInventory);

27540
Drama / Re: WARNING: DANGEROUS USER! 101010101010101010100101
« on: June 03, 2009, 08:45:28 PM »
According to Mr. Doom's BLID Database
Did you know that 5100 of those IDs are from my list? :)

I'm banned from RTB, but Nasa62 isn't, that's why he has more IDs.

Pages: 1 ... 1831 1832 1833 1834 1835 [1836] 1837 1838 1839 1840 1841 ... 2027