| Who's Online | There are currently, 3 guest(s) and 0 member(s) that are online.
You are Anonymous user. You can register for free by clicking here |
|
 | |
Welcome To Hexi's 1337 Resource Center
Welcome one and all to my site. Here you will find various downloads and information on all things relating to Furcadia. You are welcome to register and contribute to the site. Only registered members may add downloads to the site and download from the site. Comming soon will be the option of having me host the files localy on the site which will be a service open to subscribers If you have any suggestions for the site please send me an e-mail.
I appreciate your input in advance.
This site will be dedicated to being a full resource to anything Furcadia related. I will strive to maintain an up to date site as best as time allows. I am also looking for a few admins to help me maintain the site and approve downloads as they are submited by the users. If interested please e-mail me. PHP-Nuke Experience is perfered.
|
|
Furcadia Base220 Conversion
For years and years furcadia used Base95 for it's strings, but as of 024 update, they changed to Base220. Now it is common to find conversions for such languages as C++, VB, and other common languages associated with writting bots. So here I will give the Base220 conversion code for PHP. This code is not my own original code. I recieved it from a friend whom received it from someone else.
function decodeB220( $data ) { $num = 0; for ($i = strlen($data)-1; $i >=0 ; --$i) { // iterates over string in reverse order $num = $num * 220; // first iteration multiplies by zero making num remain at zero $num = $num + ord(substr($data, $i, 1)) - 35; } # print $num . "n"; return $num; }
function encodeB220( $num, $leng = 4 ) { $data = ""; for( $i = 1; $i <= $leng; ++$i ) { $data .= chr($num % 220 + 35); $num = floor($num / 220); } return $data; }
|
|
Bot Hosting
As mentioned in a post on the furcadia forums, I have decided to offer bot hosting for a small nominal fee yet to be decided, once I complete a working version of my php bot that will allow users to easily make changes to the information in thier bot. If you are interested, then please e-mail me Here
I've finaly got some major work in on the bot hosting, but lack the web interface that would allow users to run/stop/edit bot details and such. Anyone skilled in Perl or JSP that would be willing to write this portion of the project would be appreciated.
|
|
| |
| Login | | Don't have an account yet? You can create one. As a registered user you have some advantages like theme manager, comments configuration and post comments with your name. |
|
| Big Story of Today | | There isn't a Biggest Story for Today, yet. |
|
| Old Articles | | There isn't content right now for this block. |
|
|