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

Pages: 1 2 3 4 [5] 6
61
Modification Help / Checking if a function exists
« on: March 27, 2014, 03:04:31 PM »
How do I check from the server side if a function exists.

62
Modification Help / Finding the host
« on: March 26, 2014, 10:04:48 AM »
How would I find the host of the server? I have seen %host = getSubStr($ServerInfo::Name, 0, strStr($ServerInfo::Name, "\'"));. Would that work if the server was dedicated and the host was not on? Is there another way?

63
Modification Help / Detecting a Syntax Error
« on: March 25, 2014, 04:52:29 PM »
Simple question,
How do I check if a file being executed has a syntax error.

64
Off Topic / Counter Attack
« on: March 23, 2014, 10:41:05 AM »
The above user just used their special attack on you! Counter it with your special attack!

Chocolate Chip Shotgun

65
Off Topic / Yo dawg...
« on: March 23, 2014, 10:31:00 AM »
Yo dawg I heard you like quotes.
Quote the person above you is that we may have quotes in quotes a quoteseption!

66
Suggestions & Requests / Blockland hoodies
« on: March 22, 2014, 10:44:29 PM »
Someone needs to make blockland hoodies/tee-shirts whatever. I would pay real money for this

67
Off Topic / Embarrassing forgetup stories
« on: March 22, 2014, 02:46:31 AM »
Simple just tell a funny story of how you forgeted up, I'll start.

I was in vocal class at my school. Because our school is private sometimes parent visitors visit to see if you school is right for their child. These visitors will show up in your class unannounced once every month or so. Anyways I was in vocal class and out teacher (Who is really chill btw) had us listen to music which he played. So we all chill out and stuff and this one girl said "Ew your. Not wearing any shoes that's so gross!" And I announced "Well that's because I have dog stuff on my shoes". Then everyone stopped and gave me the strangest look ever. Like the guy from shining but more scarred. So I look behind me and guess what.  Group of parent visitors right behind me. So obviously the first thing I do is tell the visitors "hey" super casually as if nothing happened. After they left my teacher flipped a stuff and started yelling at me for about 10 minuets before he started class again. It's was the most hilarious forget up I have ever had.

68
Add-Ons / Simple VIP Script
« on: March 21, 2014, 07:10:00 PM »
Just a script I pulled together (mainly for learning about databasing) this past few days.
Simple really:

/setViptag [TAG] - Sets the VIP tag. If none is defined then it will default to "\c4[VIP]"
/addVip [BLID] - Add a VIP
(Self) Output Event checkVIP - Checks if a user is a VIP or not
Input event onVipTrue - Called if checkVIP returns true
Input event onVipFalse - Called if checkVIP returns false

Special thanks to visolator for helping me though my handicapation.

Download Now

Please for any bugs, errors etc go to this projects github page
GitHub

69
Games / What is your favorite game (x-post from off-topic)
« on: March 20, 2014, 02:44:25 PM »
Hey everyone,
So I just took a standardized test in which on of the sections was to write an essay. My essay prompt was "What is your favorite game and give three reasons why you like it.". Of course I chose blockland because I wouldn't want to offend our lord and savior BadSpot Christ. So my question for you is: What is your favorite game and give three reasons why you like it. Not in essay form please.

70
Off Topic / What is your favorite game
« on: March 20, 2014, 02:40:37 PM »
Hey everyone,
So I just took a standardized test in which on of the sections was to write an essay. My essay prompt was "What is your favorite game and give three reasons why you like it.". Of course I chose blockland because I wouldn't want to offend our lord and savior BadSpot Christ. So my question for you is: What is your favorite game and give three reasons why you like it. Not in essay form please.

71
Modification Help / Getting %client in an output event
« on: March 19, 2014, 05:31:41 PM »
Hey all the title explains most of it but heres some more.
I have
Code: [Select]
function fxDTSBrick::checkVip(%client)
{
echo("Event Called");

if(findclientbyname(%client).isVip)
{
echo("Is a VIP");
fxDTSBrick::onVipTrue();
}

}

When I manually type in
Code: [Select]
fxDTSBrick::checkVip(); in the console I see both "Event Called" and "Is a VIP".
However when I click on a brick that has "OnActivate => Self => CheckVIP" I only see "Event Called".
Anyone know what the problem is?

72
Modification Help / Events wont register
« on: March 19, 2014, 02:42:25 PM »
Below is my code the events don't show up. Nothing in console . Tell me where I forgeted up.
Code: [Select]
// Events
registerOutputEvent(fxDTSBrick, "checkVip");
registerInputEvent(fxDtsBrick,"onVipTrue","Self fxDtsBrick\tPlayer Player\tClient GameConnection\tMinigame Minigame");

fxDTSBrick::checkVip(%client)
{
if(%client.isVip)
{
fxDTSBrick::onVipTrue();
}

}
fxDTSBrick::onVipTrue(%brick)
{
$inputTarget_Self = %brick;
$inputTarget_Player = %client.player;
$inputTarget_Client = %client;
$inputTarget_Minigame = getMinigameFromObject(%client);
%brick.processInputEvent("onVipTrue",%client);
}

73
Modification Help / Useing Commandto* functions for file transfer.
« on: February 15, 2014, 12:46:29 AM »
I can read and write to a file. Now I just need to take the file and send it from a client to a host. Here is my question. It's little derpy but BEAR though this.
Here is my write to file function
Code: [Select]
function ServerCmdwriteToFile(%filename, %content)
{
%outFileHandle = new FileObject() ;

%outFileHandle.openForWrite(%filename) ;

%outFileHandle.writeLine(%content) ;

%outFileHandle.close() ;
%outFileHandle.delete() ;
}
My question is that if I the client side I call
Code: [Select]
commandToServer("ServerCmdwriteToFile","my doc.txt","I can speak"); will that write the file on the Clients host computer or the Servers host computer?

Thanks,
Rarw

74
Help / Defining the "profilePath" in steam
« on: January 28, 2014, 06:42:28 PM »
For a few years now I have been using a portable version of blockland on my drop-box. The portable executable was a .bat file that read
Code: [Select]
start BlocklandLauncher.exe -profilePath .
Now that im using steam I want to still keep all my BL files in my dropbox. Does anyone know how to specify the profilePath in steam?
Thanks,
Rarwmuffinz

75
Music / Dance and Misc Loops
« on: January 23, 2014, 09:16:23 PM »
Hey Guys
This is my first music loop so please don't flame me too hard. This is just a collection of a few songs that you might enjoy.

Songs
Pompeii - Bastille
Pompeii Shortened
Blurred Lines
Feel So Close - Calvin whateverhislastnameis
Feel So Close Dance Edit
Wake Me Up - Avicii
Wake Me Up Dance Edit
Last and definitely not least
Wrecking Ball - Miley

Download:
https://www.mediafire.com/?d1ezpt11r5t61to

Pages: 1 2 3 4 [5] 6