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

Pages: 1 ... 425 426 427 428 429 [430] 431 432 433 434 435 ... 597
6436
Add-Ons / Re: Return to Blockland
« on: November 05, 2008, 10:28:01 AM »
You would have to explain what "going dodge" is.

6437
Add-Ons / Re: Return to Blockland
« on: November 05, 2008, 09:07:33 AM »
RTB 2.01 is now available which is mainly bug fixes and a few suggestions implemented. Read the change log below for more information. You can update simply by opening Blockland and the auto updater will do its thing.

Code: [Select]
client.cs
- added exception handling to deal with mods that conflict with/break rtb

RTBC_IRCClient.cs
- fixed lots of random issues with the cursor jumping between message boxes
- enabled the use of /commands in a pm window
- fixed your user list selection being cleared when someone leaves/joined
- fixed users list not being cleared upon getting kicked
- the & sign is now parsed as an admin sign
- default irc names replace spaces with underscores
- fixed problem with the non-rtb filter filtering Zor (or anyone with a 3 character name)
- added filter window for filtering out connection and disconnection messages
- forced /msg to open a message window to that user
- fixed handling of messages from NickServ
- added /ignore name and /unignore name in IRC

RTBC_ServerInformation.cs
- queryWebMaster function typo fixed
- failed add-ons that the server has are not shown
- fixed a buffer overflow causing client crash so mods and players are now sent on multiple lines
- fixed a urlencode problem when verifying user lists for servers causing some players to not be shown
- switched around the join server gui to show servers with RTB, new information button added too

RTBC_InfoTips.cs
- fixed a bunch of misinformational tips
- added a new one by snot
- added some irc-specific tips
- removed some duplicate tips

RTBC_ModManager.cs
- weird white font in comment quotes is now not displayed
- presets will now only be downloaded if they are ticked
- fixed urldecode of less-than and greater-than tags which allowed access to TorqueML crap from file comments

RTBC_BugTracker.cs
- added a Suggestion selection for priority

RTBC_ColorManager.cs
- made the gui bigger to accomodate for unreasonably sized colorsets

RTBC_ServerControl.cs
- fixed issue with updating preferences using lists
- added exception handling for PTTA which was breaking it
- added a keybind to the controls menu to toggle it open/closed

RTBC_Options.cs
- removed buddylist settings (will return in 2.1 we hope)
- added options to disable certain features of rtb

RTBH_Support.cs
- disable messageboxok for dedicated servers on tcp fail
- added exception handling for dedicated servers upon error in tcp
- increased the timeout for transmissions

RTBS_Authentication.cs
- duplicate add-ons in the server add-on post (possibly related to a .zip and folder with the same name)

RTBC_Manual.cs
- Fixed RTB2 release date
- fixed some typos
- added pm information in the irc section
- added dedicated servers section
- added ignore help for irc section

General:
- Buttons on mainmenu no longer play music when the pref is off
- Add-on detection for the new add-ons gui now requires description.txt
- Script_PTTA and Script_AddOnSelectAll are both force-disabled since they are not compatible with parts of rtb
- changes to how information is displayed for servers including adding an RTB column to join server gui

Dedicated servers are now working with RTB but require some special setup steps first.
To get information on how to run your dedicated server with RTB, open the server and type rtbHelp(); into the server and press return.

Or you can download it directly at our website here.

6438
Add-Ons / Re: Return to Blockland
« on: November 04, 2008, 11:15:16 AM »
OK looks like there was a duplicate of rendering, colliding and raycasting which i've removed.

6439
Add-Ons / Re: Return to Blockland
« on: November 04, 2008, 11:00:25 AM »
I think you were just lucky and got the same one twice, I can't find a duplicate of a collision tip.

6440
Modification Help / Re: Images in the chat?
« on: November 04, 2008, 08:02:55 AM »
You don't need to mod the messageSent to be able to put a bitmap in the chat using the messageall function.

6441
General Discussion / Re: RTB Infomaniac
« on: November 03, 2008, 07:33:15 PM »
There is a 1 in 65 chance of getting the easter egg info tip.

6442
Add-Ons / Re: Return to Blockland
« on: November 03, 2008, 07:22:15 PM »
addons list doesnt show all the addons i have. weapons list, being at the bottom, is only half of what it should be. big problem.

Could you submit a bug report using the ingame bug reporter (click Help on the main menu) so I can see what add-ons you have. Enter "OMGHELP" as the feature and set it to critical so I can find it fast.

6443
Modification Help / Re: RTB: Server Control Preferences
« on: November 03, 2008, 05:17:17 PM »
That does appear to be a bug. I'll take a look and add it to the patch.

6444
Add-Ons / Re: Return to Blockland
« on: November 03, 2008, 03:24:27 PM »
OMG Its out!!! Btw how do you install? Nvm you just put it in your add-ons folder?

Bingo.

6445
Add-Ons / Re: Return to Blockland
« on: November 03, 2008, 03:08:59 PM »
Color Sets
Since RTB allows for color set loading from the Start Server screen, there is a special way you will need to pack your color set:
  • Must be in a .zip with the name Colorset_YourTitleHere.zip
  • Must contain the colorSet.txt in the zip
  • Must contain a description.txt in the zip with Title and Author fields
It will be placed in the add-ons folder like any other add-on.

Info Tips
Info Tips can be added to what the Infomaniac says on the loading screen using the following function:

RTB_addInfoTip("Tip","No-Bind Tip","Category");

Tip - The text that the Infomaniac will say.
No-Bind Tip - The Info Tips system adds a new type of TorqueML which is the <key:bindname> to show what key to press to perform a function. If the bindname you supplied in the tip is unbound, the No-Bind Tip will be shown instead.
Category - This is not used in RTB 2.0 however in RTB 2.1 you will be able to choose which categories of tips you will get to see.

Here is the code you should use:
Code: [Select]
if(isFile("Add-Ons/System_ReturnToBlockland/server.cs"))
{
   if(!$RTB::RTBR_InfoTips_Hook)
    exec("Add-Ons/System_ReturnToBlockland/RTBR_InfoTips_Hook.cs");
   RTB_addInfoTip("Press <key:showPlayerList> to bring up the player trust box.","It looks like you can't open the player menu! Open the options menu and assign a key to it!");
}

This code should be placed in the client.cs of your Add-On

Pref Manager
RTB will be including a preference manager which will be accessible to Super Admins on the server. Any add-on can register prefs to be managed by this using the following function:

RTB_registerPref("Pref Name","Category","Pref","Var Type","Your Mod Name","Default Pref Value","Requires Server Restart","Host Only");

Pref Name - The display name of your Pref.
Category - This will usually be the name of your Add-on.
Pref - The actual variable name without the $.
Var Type - The field type, much like the events system it supports list, string (max length), bool and int (minval) (maxval).
Your Mod Name - The name of your mod, simply for error reporting.
Default Pref Value - Enter a default value for the pref if it has not been changed or set before.
Requires Server Restart - Puts a * in the gui to show that changing it will require a server restart.
Host Only - This will prevent non-hosts from changing that setting.

Here is an example:
Code: [Select]
if(isFile("Add-Ons/System_ReturnToBlockland/server.cs"))
{
   if(!$RTB::RTBR_ServerControl_Hook)
      exec("Add-Ons/System_ReturnToBlockland/RTBR_ServerControl_Hook.cs");
   RTB_registerPref("Duplicator Timeout","Duplicator","Duplicator::Timeout","int 0 60","Tool_Duplicator",40,0,0);
}
else
{
   $Duplicator::Timeout = 40;
}
This would register a pref called "Duplicator Timeout" in the Duplicator category which would change the $Duplicator::Timeout pref. The user would be allowed to enter an integer between 0 and 60 inclusive. The pref is registered by the Tool_Duplicator add-on. The default timeout is 40 seconds. It does not require a restart to begin working and both the host AND super admins can change it. If RTB is not installed, it will set the $Duplicator::Timeout value to 40 anyway so the add-on still works.

This code should be placed in the server.cs of your Add-On

Mod Manager
I have now added a system whereby you can provide text-based links to RTB mods which will open them ingame using the following method:

Code: [Select]
<a:rtb-fileid>File Title</a>

For example:
<a:rtb-31>Sawn-off Shotgun</a> would cause the sawn-off shotgun to be displayed in-game for anyone who clicked it.

6446
Add-Ons / Return to Blockland
« on: November 03, 2008, 03:08:27 PM »

About
Return to Blockland (RTB 1.x) was one of the most popular Mods for Blockland 0002 (Alpha) before the retail version of Blockland was released. However the new RTB (2.0) is quite different to what people may be expecting. The older version actually changed most of Blockland 0002 and totally changed the way in which many aspects of it worked such as the inventory and trust systems. RTB 3 won't be like that - It will not be removing any of the features of Blockland you've come to love - It'll only be adding new resources and features for you to use. Here is a brief synopsis of the features we have in RTB 3.4.

  • In-Game Add-On Manager - This system will allow you to browse Add-Ons submitted to the RTB Add-Ons System, comment on them, rate them and finally download and install them without ever having to leave Blockland.

  • Online Add-On Browser - To go with the In-Game Add-On Manager, We've also got an Online version of this which is connected to our forums. Using this system you can submit your Add-Ons to our system, to be downloaded by users ingame!

  • In-Game IRC Client - You will now be able to access the RTB IRC from In-game using our renovated IRC Client.

  • Player Activity Tracking - Information about what server you're on, and how long you've been playing are sent to our Web Server so people can see who is currently playing Blockland and where.

  • Server Information Broadcasting - Information about the server you're hosting is sent to our Web Server such as the players on it, and even what Add-Ons you've enabled.

  • Colorset Management - Instead of having to copy a text document to a folder to change your colorset, you can now use our Colorset Manager that allows you to download Colorsets from the RTB System, preview them, and then apply them before you start your server, without ever having to leave Blockland.

  • Ingame Server Manager - The Ingame Server Manager will allow your Super Admins to manage your server by controlling the Auto Admin list, all the server preferences etc.

  • Game Tips on Loading - The Infomaniac will now give you information about Blockland when you're loading a server, so you can learn more about the intricacies of the game!

  • Server Information - When you attempt to join an RTB Server, you'll be presented with an information screen which will show you all the players on the server, and all the add-ons the server has.

  • Auto-Updater - RTB will automatically notify you when an update has become available and will allow you to download and install it immediately.

  • Content-Downloading - RTB will download all RTB add-ons from the server you're joining (without the scripts) to make it load much faster for you. This only downloads the shapes, sounds, textures and bricks needed to join the server.

http://forum.returntoblockland.com/

Modding
RTB provides a few methods to allow other add-ons to integrate themselves into RTB. You can read up on what kind of features RTB provides, and some sample code on how to use them:

http://returntoblockland.com/files/RTB_Documentation.pdf

Support
There are various ways to get support for RTB. The best way is to make a post in the Helpdesk of our forums (above) where you will get the fastest response. You can also send an email to support@returntoblockland.com.

Finally you can use the Bug Reporter in RTB by either clicking the link in the Mod Manager or clicking Help on the main menu.

Download
Return to Blockland v3.5

Installing
Simply place the System_ReturnToBlockland.zip inside your Add-Ons folder.

6447
Randy also submitted this nice resource that does a full bls save from the server:

http://returntoblockland.com/forums/download.php?cmd=viewFile&id=226

6448
Off Topic / Re: procrastination2
« on: November 03, 2008, 07:47:36 AM »
I think he's just a troll you guys are paying way too much attention to.

6449
Off Topic / Re: procrastination2
« on: November 02, 2008, 07:53:13 PM »
Last time I checked, eating was an animal urge.

6450
Off Topic / Re: procrastination2
« on: November 02, 2008, 05:53:32 PM »
Out of all the sickening threads I have seen, this has the be the most perverted. Who the forget wants to know that you jack off? I sure don't.

Grow some skin.

Edit: I just realised this could be misconstrued as some attempt at a pun with reference to the circumcision thread - its not!

Pages: 1 ... 425 426 427 428 429 [430] 431 432 433 434 435 ... 597