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 - MrPickle

Pages: [1] 2 3 4 5 6 ... 13
1
Help / Coming out of full screen via Alt + Enter
« on: June 25, 2009, 12:53:49 PM »
Whenever I hit Alt + Enter to exit fullscreen mode, it fails to recreate my window and gives this error message:

"OpenGLDevice::setScreenMode -- can't switch to resolution larger than desktop in window mode!"
I then have to type setRes(800, 600); which gives me back my window.

This is on Ubuntu 9.04 using WINE; I do not know whether the same applies to windows.

I would like to know if there is a way to either disable Alt + Enter or fix this problem?

2
Drama / Why you hate MrPickle
« on: December 18, 2008, 05:16:48 PM »
I'll go first;

He just won't leave. (Herpes anyone?)
He thinks he can code

Your turn!

3
Drama / Upon registering
« on: December 15, 2008, 08:42:46 AM »
I found this slightly amusing as I was browsing Blockland to see how things were going, I thought I would "share the lols" as one might say.

Quote
You agree, through your use of this forum, that you will not post any material which is false, defamatory, inaccurate, abusive, vulgar, hateful, harassing, obscene, profane, loveually oriented, threatening, invasive of a person's privacy, adult material, or otherwise in violation of any International or United States Federal law. You also agree not to post any copyrighted material unless you own the copyright or you have written consent from the owner of the copyrighted material. Spam, flooding, advertisements, chain letters, pyramid schemes, and solicitations are also forbidden on this forum.

Sorry, no idiotic comments nor pictures :)


4
Suggestions & Requests / 3 Event Suggestions
« on: August 17, 2008, 10:48:41 AM »
onAdminActivate - Like onActivate but only works if the player's an admin or greater.

playAnimation - For players and bots, makes them play the selected animation.

setPlayerCamera - Sets the player's camera to a named brick, they can click to set the player's camera back to the player.

5
Drama / Ephialtes and Trader
« on: February 07, 2008, 01:47:29 PM »
They're both douche bags, they run round telling commanding people to do stuff, acting like they're invincible.

People won't say anything to them because they want to lick there ass's to be "cool".

Just wanted to say that before I go :cookieMonster:




Do I have to highlight it, some people are incapable of reading properly.

6
Drama / RTB rip off much?
« on: February 03, 2008, 11:54:30 AM »

7
Modification Help / Calling a function on click
« on: February 01, 2008, 12:53:46 PM »
I'm in a bit of a pickle;

When you open a GUI and click, no function is called.
Unless trace is lieing to me.

I need a way of calling a function when you click with a gui open.
The only way I can think is by creating a giant button, but that would screw everything up.

8
Modification Help / Blockogotchi Preview
« on: January 30, 2008, 02:20:53 PM »
It's completely client side, your little fellow will be controlled in a GUI. You will have to feed him, play with him etc to keep him happy, you will earn credit through playing basic games which you will then be able to do stuff with like buy food, toys etc.

Here's a few previews, So far I've only got the creator, loading and saving done:

Loading/New (If you have a Blockogotchi loaded the Loaded button will display Save and the tick box will disappear.


Click the little tick box for a list of your Blockogotchi's


Click new to open the creator, you can colour him give him and name and choose from styles, at the moment there's only 1 style.


TL;DR It's basically Tamagotchi but Blockland style :D

Please give suggestions, I also need styles.

If you want to make a style the image must be 40x40, your person doesn't have to be, and the "body" must be transparent.

I will choose the best ones to include with the download when I am finished.

9
Modification Help / Baby Mod
« on: January 29, 2008, 12:39:04 PM »
Now stop asking me for it.

http://www.mediafire.com/?ey0esmwo8jl

10
Modification Help / Slot #4 not getting replaced.
« on: January 19, 2008, 01:18:39 PM »
It replaces everything in all the other slots but not in the last slot.

I found adding %player.tool[%i] = %ranWeapon; fixes the issue but then the player's inventory doesn't update.

Without that it replaces the item but not the last item.

Code: [Select]
function QuestionBoxItem::onPickup(%this, %obj, %player){
Parent::onPickup(%this, %obj, %player);
%weaponCount = "";
for(%i=0; %i<DatablockGroup.getCount(); %i++){
%obj = DatablockGroup.getObject(%i);
if(%obj.getClassname() $= "ItemData" && %obj.getName() !$= "QuestionBoxItem")
%weapon[%weaponCount++] = %obj;
}
%ranWeapon = %weapon[getRandom(0,%weaponCount)];

for(%i=0; %i<=4; %i++){
if(%player.tool[%i] == %this){
messageClient(%player,'MsgItemPickup','',%i,%ranWeapon);
break;
}
}
}

11
Gallery / MrPickle's PPT Application - Shuttle
« on: January 14, 2008, 01:16:22 PM »


Load in Bedroom.

12
Modification Help / Growing Flowers
« on: January 13, 2008, 11:14:27 AM »
I made this for Zoneark because he wanted it then people started asking me for it so I'm releasing it here.

Basically you make a small cone, hit with wrench, close the gui then type /grow, it then 'grows' by a 1x1 flat round every 45 seconds until it reaches $Plant::MaxHeight.

I'm not sure if the findGreen() will always come out green on all paint packs.

To make the max height different change $Plant::MaxHeight.

Have fun
Put this in your add-ons folder:
Script_Grow.cs

13
General Discussion / The world's going to end.
« on: January 13, 2008, 08:38:34 AM »
The bricks are rebelling.

14
Modification Help / Items getting faster
« on: January 12, 2008, 07:33:20 PM »
I wanted to make all my items rotate while on bricks so I made a script object to manage them so I only had one schedule instead of loads but as I add more items the rotation speeds up.

It also says unkown command onRemove when it still does what the command does.

It's a bit big to post so I've attached.

I've noticed this several times when I've used script objects to reduce lag.

If you tell me why I can try and fix it myself.

15
Modification Help / Rotation
« on: January 12, 2008, 05:12:31 AM »
Could someone give me a link/tell me about Torque's rotation, there's four numbers and I don't know what the fourth one means/does, I've tried playing with it but it just confused me more :D

I would of searched but I don't know what to search for.

Pages: [1] 2 3 4 5 6 ... 13