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 - Builder/@gent/eventer

Pages: [1] 2 3 4
1
Add-Ons / Re: Launched a Archive website!
« on: July 11, 2015, 10:37:46 PM »
This topic is being locked because I realized I posted this in the wrong section.
I may/may not repost a more updated version of my website in the "General Discussion".

2
Add-Ons / Re: Launched a Archive website!
« on: July 04, 2015, 03:17:44 AM »
I don't know how confident I am in the website of someone who uses the wrong "where" on their front page.
This would go in GD, by the way.
Wow, sorry... I didn't mean for my grammar to be missed up, it's late and I'll fix that before I hit the hay. :)
Fixed Grammar...

3
Add-Ons / Re: Launched a Archive website!
« on: July 04, 2015, 03:07:41 AM »
Try going directing to http://returntoblockland.tk/forum.returntoblockland.com/dlm/index.html if you want the mirror. Maybe it's a bug.
If this causes anymore trouble please let me know.

4
Add-Ons / Re: Launched a Archive website!
« on: July 04, 2015, 03:06:40 AM »
Hmmm, thanks for the intel. I'll get right on that.

5
Add-Ons / Re: Launched a Archive website!
« on: July 04, 2015, 03:04:20 AM »
Yeah, but the point to my website was the Data Hub not the RTB mirror. The mirror was just something I added on to make it more worth it. Heres the Directlink to the data hub if your just too lazy to actually visit my site.
https://mega.nz/#F!FlVFibjT!R6SvjLOrwn5Z5dC65970iA
Under Personal should be "MY" music packs.

6
Add-Ons / Launched a Archive website!
« on: July 04, 2015, 02:54:40 AM »
Hey guys, I just wanted to let you know I launched a quick website that contains archives....
I'm also hosting a RTB Mirror website of the original, but thats kinda besides the point.
My website was a fast way of me sharing a few things about me & to give you guys my Music Packs without me posting here all the time. :)

My Website: http://returntoblockland.tk/home/index.html (This is my site, not the mirror...)
The mirror of RTB: http://returntoblockland.tk/ (This is the mirror...)
If Link doesn't work for you try: http://returntoblockland.tk/forum.returntoblockland.com/dlm/index.html

If your still getting errors try:
RTB: http://rtb.hostoi.com
My Site: http://rtb.hostoi.com/home/index.html

If all else fails (I'm truly sorry...) try this direct link to the Data Hub:
https://mega.nz/#F!FlVFibjT!R6SvjLOrwn5Z5dC65970iA

If you don't like the RTB mirror site, I have all the RTB add-ons + personal BL Stuff uploaded to my Data Hub. The Data Hub link will be on the site! Happy trailing.

Preview:

7
Add-Ons / Re: Server Events v1.3 (2014/12/26)
« on: January 29, 2015, 06:39:05 PM »
I don't know if it's out there, but could you add a command (/ReportaProblem) (/RaP) to it & make it can contact the server host; Maybe through email? But I just thought this might be a great idea since on dedicated servers the Host isn't always around.
Maybe in the future we could send the (RaP) directly to the Phone of the Host (Text).

8
I really dont get the point of those massive overcomplicated download buttons.
Id much rather see images of the item/mod in use.

I absolutely agree... Whats the purpose anyway?
For me I think it's a bit overkill.

9
Suggestions & Requests / Change the MSN Tag to Skype...
« on: July 05, 2014, 03:30:29 AM »
I Recently just read the MSN Messenger transfered over to Skype!
Messenger To Skype

So why not change the MSN Tag in the Profile page to Skype?!

10
Add-Ons / Add-ons Dump
« on: June 23, 2014, 04:07:16 PM »
Hey guy, I just wanted to create a topic where people can dump there add-ons for people to use. To start things off I'm posting the most wanted add-on there is since RTB went offline. Event_Variables.zip or VCE (Variables Condition Events)

Download:
Dropbox: Event_Variables.zip
Mediafire: Event_Variables.zip

11
Modification Help / Re: Stuck...
« on: June 22, 2014, 08:40:19 PM »
Hey, I know I'm kinda new to this coding, but How do you use switch$(%msg)?
Example Please?

12
Modification Help / Re: Stuck...
« on: June 22, 2014, 03:46:10 PM »
Quote
You don't need multiple beta testers for simple one-question-one-response chat bot. You test each question, see if it gives the appropriate response, and that's it

True, but in my case I've made 3 Guis and a Ui for the MainMenu that need to be tested fully.
I'm just spending too much time on the code, and I need to see if the Guis & Ui works on other computers.

13
Modification Help / Re: Stuck...
« on: June 22, 2014, 02:10:15 PM »
Thanks guys for the input! Anyway the reason I used blid instead of name is because of this Quote.

Is it possible the error occurs due to the loving crazy name?
Try using %client.bl_id instead of %client.name.

I will post full code on the forum next time.

Anyone who help I would like to say Thank you and I'll put you in my Credits!
If you have a different Blockland name than the forums, please let me know.
Note: the credits below is not the actual credits, the ext had to be changed to upload.



14
Modification Help / Re: Stuck...
« on: June 21, 2014, 10:14:14 PM »
Code: [Select]
package Excella_3_WakeUp
{
function clientCmdChatMessage(%a,%b,%c,%fmsg,%cp,%name,%blid,%cs,%msg)
        {
parent::clientCmdChatMessage(%a,%b,%c,%fmsg,%cp,%name,%blid,%cs,%msg);

                        if (%msg $= "Wake Up E3")
                            if(%blid $= "12873")
                                {
    commandToServer('messageSent',"Excella: I'm awake! I'm awake! I was just resting my Powercells...");
                                clientCmdBottomPrint("\c1Excella is |\c4ON\c1|", 3);
                                ActivatePackage(Excella_3);
                                }

                        if (%msg $= "Shutdown E3")
                            if(%blid $= "12873")
                                {    
                  commandToServer('messageSent',"Excella: But? Ah, ok.");
                                clientCmdBottomPrint("\c1Excella is |\c2OFF\c1|", 3);
                                DeactivatePackage(Excella_3);
                                }
        }
};
ActivatePackage(Excella_3_WakeUp);

Fixed?

It's because %blid actually is not defined. Literally, it equates to "".
I'm not going to spoon feed you, but that is your first problem.  You also have a bunch of weirdly placed, misplaced, and nonexistent brackets. Also, it's clientCmdBottomPrint. And for anything involving numerical values, you are supposed to use ==, not $=.
One more thing - package Excella_3 does not exist. And chatbots are an easy thing to learn, but they are frowned upon by the community.

Package Excella_3 does exist I just didn't give you my whole Client.cs. I just pasted the link to the whole Client.cs.
Sorry forgot to change Excella_3 to Excella_3_GC!

15
Modification Help / Stuck...
« on: June 21, 2014, 10:03:33 PM »
Ok, so I'm scripting a Chatbot (Don't worry I'm scripting it so it won't F*ck up the chat & Respond to every little thing.) that makes Blockland easier, kinda like an assistant! Ok enough about Why lets talk the problem.

Problem:

                        if (%msg $= "Wake Up E3")
                            if(%bl_id $= "12873")
                                {
                                commandToServer('messageSent',"Excella: I'm awake! I'm awake! I was just resting my Powercells...");
                                clientCmdBottumPrint("\c1Excella is |\c4ON\c1|", 3);
                                ActivatePackage(Excella_3);
                                }

No synx errors, the BLID & the clientCmdBottumPrint doesn't work...

Code:

Code: [Select]
package Excella_3_WakeUp
{
function clientCmdChatMessage(%a,%b,%c,%fmsg,%cp,%name,%cs,%msg)
        {
parent::clientCmdChatMessage(%a,%b,%c,%fmsg,%cp,%name,%cs,%msg);

                        if (%msg $= "Wake Up E3")
                            if(%bl_id $= "12873")
                                {
    commandToServer('messageSent',"Excella: I'm awake! I'm awake! I was just resting my Powercells...");
                                clientCmdBottumPrint("\c1Excella is |\c4ON\c1|", 3);
                                ActivatePackage(Excella_3);
                                }

                        if (%msg $= "Shutdown E3")
                            if(%bl_id $= "12873")
                                {    
                  commandToServer('messageSent',"Excella: But? Ah, ok.");
                                clientCmdBottumPrint("\c1Excella is |\c2OFF\c1|", 3);
                                DeactivatePackage(Excella_3);
                                }
        }
};
ActivatePackage(Excella_3_WakeUp);

The whole script: http://free.primarypad.com/p/JQf64Tb75N

Pages: [1] 2 3 4