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 - adam savage

Pages: [1] 2 3 4
1
/title

I looked through console trace and System_ReturnToBlockland and didn't find anything that helped.

2
Python as far as I know doesn't have functions such as GetWord() or GetSubStr(), so I was wondering if I could call torque functions in IDLE, and Python functions in Blockland somehow.

3
Modification Help / Auto Falling Plates code not making plates fall.
« on: June 03, 2012, 07:56:29 AM »
I am trying to make a Falling Plates similar to DAProg's. put the PlatesFall function is broken.
Code: [Select]
function PlatesFall(%id)
{
ColorMessage(%id);
%groupCount = MainBrickGroup.getCount();
for(%i = 0; %i < %groupCount; %i++)
{
%brick = MainBrickGroup.getObject(%i);
%dataname = %brick.GetDataBlock().GetName();
%color = %birck.GetColorID();
if(%dataname $= brickFallingPlateBaseData && %color == %id)
{
%brick.schedule(3000,"Fall");
}
if(%dataname $= bricklight1x1BaseData || %dataname $= bricklight1x2BaseData)
{
%brick.SetColor(%id);
}
}
}

"Fall" is an event I made for the plates. The brick1x1/1x2lightbaseData and brickFallingPlateBaseData are custom bricks. ColorMessage works fine.

4
Drama / "Don't go on" on DAProg's Falling Plates
« on: May 19, 2012, 07:10:33 PM »
I know it's against the rules, but these two overdid it. And 1 admitted to trolling.

5
Modification Help / Deleting a file [solved]
« on: April 20, 2012, 07:36:11 AM »
I am trying to delete a file using the functions:

Code: [Select]
%file = new fileObject();
%file.openForAppend("Config/client/AdamBot/Learning/" @ %word @ ".txt");
%file.delete();
But that only deleted the file OBJECT, I want to delete the file itself.

6
Help / BlockOS whoIs app function
« on: April 01, 2012, 07:02:49 AM »
In BlockOS, the WhoIs app, there is no define function to get a players ID from their name or vise versa. Can you please explain how one would do so?

7
Client checking Add-On: Script_AdamBot
Loading Add-On: Script_AdamBot (CRC:421358409)
Add-Ons/Script_AdamBot/client.cs Line: 171 - Syntax error.
>>> Some error context, with ## on sides of error halt:
^^^^ if(hasItemOnList($AFKBot::List, %name))
^^^^^{
^^^^^^$AFKBot::list = removeItemfromList($AFKbot::List, %name);
^^^^^^commandToServer('messageSent', "AdamBot: " @ %name @ " is back!");
^^^^^}
^return parent::clientCmdChatMessage(%c,%a,%b,%fmsg,%cs,%name,%cp,%msg);
^}
};##
##ActivatePackage(AdamBot);

>>> Error report complete.

ADD-ON "Script_AdamBot" CONTAINS SYNTAX ERRORS

I already checked and nothing is wrong with the "{".

8
General Discussion / Banned from RTB by a misunderstanding
« on: March 26, 2012, 05:39:20 PM »
I posted that I was never going to use the RTB forums again. I just meant the FORUMS, not the whole thing. RTb would be very useful, so please unban me Ephialtes.

9
General Discussion / "Lazy is the mother of invention"
« on: March 26, 2012, 02:54:03 PM »
I heard the phrase "Lazy is the mother of invention" and though of these add-ons:
Land Scape Genorator
Duplicator
Fill Can

Any add-ons that you think you think of when you hear "Lazy is the mother of invention"?

10
Drama / Ethan the Great. the lier
« on: March 25, 2012, 06:23:17 PM »
I was at Psp's [WIP]CityRPG, I was building a shop and Ethan tells me to place a Money Printer, He told me that he wouldn't do anything to it, then we had a Big argument, so I place one, Then he hits it with a baton, jails me, then tris to steel $5000 from me.

11
I need to fix a string where "youre" becomes "you're" and "cant" becomes "can't" and use %this.Setvalue() to input the strings.

12
Modification Help / AFKbot issue
« on: March 08, 2012, 07:49:26 AM »
Code: [Select]
case "AFK": if(!hasItemOnList(%name, $AFKBot::List))
{
commandToServer('messageSent', "AdamBot: " @ %name @ " is now AFK.");
$AFKBot::list = addItemToList($AFKbot::List, %name);
}

I have a switch and everything above the code, but it says syntax error.

13
Modification Help / Killing all of a kind of brick
« on: February 26, 2012, 03:08:45 PM »
Say I wanted to destroy all of the pine trees in my server, but no other bricks.

I have no clue how it would work, It would need a "for()" in it though.

14
I am trying to get the thing inside the brackets of an array like: "$Array[Stuff]"
I need to get "Stuff: NOT the value of the array.

15
General Discussion / v21, you're either with or against it.
« on: February 06, 2012, 04:03:28 PM »
I think the tilte says all. I AM AGAINST IT!

Pages: [1] 2 3 4