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

Pages: 1 ... 183 184 185 186 187 [188] 189 190 191 192 193 ... 383
2806
Off Topic / Re: Drivers: Which gas station?
« on: January 09, 2015, 04:42:57 PM »
They still have full service stations?

2807
I still wont forget how I edgeguarded Waru to death as Game and watch

he kept trying to get up but kept on getting hit in the face with meat.


2809
can always learn something from this kind of thing
Moriarty is interested

What do you main?

2810
Looking for a couple people to be part of a casual 3ds smash tournament, preferable level to be beginner/intermediate


2811


:<

did i forget something up?

2812
General Discussion / 1080p/1050p Loading Background Replacement
« on: January 08, 2015, 02:02:56 PM »
I got annoyed with the tiny, low quality loadingBG that was present in the game, while using a 1080p monitor.

So, I have recreated the loadingBG at a higher resolution so it looks nicer.

Place in \Blockland\base\client\ui and replace old loadingBG.png

1080p
1050p

2813
Modification Help / Re: ripping the event_addItem to use in a function
« on: January 07, 2015, 10:28:44 PM »
He's trying to add item to the end so he can do /addSword Sword instead of /addSword SwordItem and tried to do
%variable @ Item instead of %variable @ "Item"

Yeah. Whoops.

2814
Modification Help / Re: ripping the event_addItem to use in a function
« on: January 07, 2015, 10:26:03 PM »
haha, sorry guys. the way I had it worked, I just forgeted up the variable because it wasn't defined in that function. it's all good now.

2815
Modification Help / Re: ripping the event_addItem to use in a function
« on: January 07, 2015, 10:08:00 PM »
tried to use

Code: [Select]
                    if(isObject(%client.player))
                    {
                        %weapondatanamei = %weapondataname @ Item;
                        %player = %client.player;
                        %player.addItem(%weapondatanamei.getID(),%client);
                    }

Add-Ons/Server_thing/server.cs (449): Unable to find object: 'Item' attempting to call function 'getid'

2816
Modification Help / Re: ripping the event_addItem to use in a function
« on: January 07, 2015, 09:54:07 PM »
That's not at all what I told you. I told you %argument not %argumentItem as those are two different variables.

it needs to have Item at the end of it.

2817
Modification Help / Re: ripping the event_addItem to use in a function
« on: January 07, 2015, 09:46:00 PM »
Further example
function serverCmdHaxer(%client,%argument) would make it so you can do /Haxer bleh and then %argument will be you variable and it will be "bleh"

okay. so

Code: [Select]
function serverCmdAddSword(%client, %argument)
{
    if(isObject(%client.player))
    {
        %player = %client.player;
        %player.addItem(%argumentItem.getID(),%client);
    }
}

this is what u told me

2818
Modification Help / Re: ripping the event_addItem to use in a function
« on: January 07, 2015, 08:57:26 PM »
I need to get it to use a variable, though.

2819
Modification Help / Re: ripping the event_addItem to use in a function
« on: January 07, 2015, 12:20:19 PM »
Then add another argument to your function and use the extra argument.

how?

2820
Modification Help / Re: ripping the event_addItem to use in a function
« on: January 07, 2015, 11:02:02 AM »
You don't need to turn the "sword" into a variable if that's the only thing your function will add.

It isn't the only thing my function will add.

that's why i need it to be a variable.

Pages: 1 ... 183 184 185 186 187 [188] 189 190 191 192 193 ... 383