inTBT

Fabioisonfire

total a-hole
Joined
Jun 19, 2005
Posts
3,947
Bells
844
Countdown Coins
0
Lucky Tickets
0
inTBT:
inTBT; my newest, latest, greatest project. This thing is really big and has taken me forever, and it's almost ready to be released. I'm really excited for this. I'll only give you little information at a time, until I feel it's ready for release.

inTBT is an OS-like program JUST for TBT. It'll contain all things any great user program would do; icons, windows, options, and much more. You'll be able to have quick-links around TBT, and be able to PM members with the click of a button. You'll be able to write your own inTBT programs, upload, save, and share them! There is a lot done, and a lot planned; I'm hoping it'll serve TBT justice.


News:
07/16/07: Topic Posted, Screenshot + Userbars added


Screenshots:
#1 - #2 - #3


Userbars:
#1 (inTBT User) - #2 (inTBT Supporter) - #3 (inTBT)


Downloads:
Version 1.0:
.RAR: http://www.savefile.com/files/898676
.ZIP: http://www.savefile.com/files/898691


inTBT Creation:
inTBT has the unique ability to create custom programs that you can make. And all in Notepad. This is a tutorial on how to create your own inTBT program.

First, open up Notepad. The first thing needed in the program is the title and a name. So, type:
Code:
objcustomicon.name="(Program's name here)"
objcustomicon.title="(Your title here)"

Now, if you want a simple program, for things like announcements, you'll need a body. To create a body, type:
Code:
objcustomicon.text="(Your text here)"


So, an example of a simple announcement program would be:
Code:
objcustomicon.name="Announcement"
objcustomicon.title="ANNOUNCEMENT"
objcustomicon.text="inTBT has been released!"


Next, we'll learn how to add buttons to your windows.
Code:
objcustomicon.name="Announcement"
objcustomicon.title="ANNOUNCEMENT"
objcustomicon.text="inTBT has been released!"
objcustomicon.button=true

This line of inTBT code will add a button to your window. Now, to customize it.

Code:
objcustomicon.name="Announcement"
objcustomicon.title="ANNOUNCEMENT"
objcustomicon.text="inTBT has been released!"
objcustomicon.button=true
objcustomicon.btext="Click Here"
objcustomicon.blink="http://www.clickhere.com"

The 'btext' code is what will appear on the button. The 'blink' is what the button will link to.


So here's our custom inTBT Program so far:
Code:
objcustomicon.name="Announcement"
objcustomicon.title="ANNOUNCEMENT"
objcustomicon.text="inTBT has been released!"
objcustomicon.button=true
objcustomicon.btext="Click Here"
objcustomicon.blink="http://www.clickhere.com"

Next, we'll work on creating a custom icon for our program.

First, you'll need to make the actual icon for your program. Be sure to save it as a .GIF. We'll save ours as 'newicon.gif'. Next, add this code to your document:


Code:
objcustomicon.name="Announcement"
objcustomicon.title="ANNOUNCEMENT"
objcustomicon.text="inTBT has been released!"
objcustomicon.button=true
objcustomicon.btext="Click Here"
objcustomicon.blink="http://www.clickhere.com"
objcustomicon.iconchange=true
ocjcustomicon.newicon="newicon.gif"

The 'iconchange' code signifies we want the icon changed. Then, we signify our .GIF file's name in the 'newicon' section.
That's all for now. More coming soon.
 
Looks cool, although the icons could look better. ;p I might try it out soon, once there is a release. ;D
 
Yeah, the actual BETA release will be out very soon, I'm just adding some sound, little extras, and polishing it up.
 
Is there a program you're using to make it?


:D Looks very cool, can't wait to try it!


:)
As Fly said, the icons could use some help for the final release.


^_^
 
Can't wait for the beta. :gyroidveryhappy:

But what happened to the monkey poop throwing game D=
 
If you want any help with those icons, let me know.


:) I know my way around a vector graphics program.


:P
 
If he's using the program that I think he is, You can upload any image to use as a sprite in that program.

But, it can't reconigize vector graphic file formats.
 
Zelandonia said:
If he's using the program that I think he is, You can upload any image to use as a sprite in that program.

But, it can't reconigize vector graphic file formats.
I can save it into any format.


:)
 
Kiro said:
Zelandonia said:
If he's using the program that I think he is, You can upload any image to use as a sprite in that program.

But, it can't reconigize vector graphic file formats.
I can save it into any format.


:)
Still, icons are sprites.....not vectors
 
New screenshot added. It demonstrates the jawsome power of creating a custom inTBT program. They can be used for a multitude of things. Plus, with the inTBT InstantUpdater, you'll be able to download and share custom inTBT programs on the fly.

And guys, I don't need help with the icons. I like them for now, but as I go along, they'll be much better, I promise.
 
Back
Top