Advertise Here

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

Pages: [1] 2 3
1
Java / Re: Java Coding Conventions
« on: February 27, 2009, 08:43:30 pm »
Helps to have it clean though. Just think about it and try it  ;D

2
Xbox / Xbox 360 / Re: What type of Xbox 360 do you have?
« on: February 26, 2009, 03:20:15 pm »
I got the normal  ;D
60GB

Picture:


3
Java / Re: Java Coding Conventions
« on: February 25, 2009, 03:16:49 pm »
It doesn't really matter if your coding is neat or messy it's still code.
To be honest, conventions are stupid  :uglystupid2:

Yes, but if they are messy it's much harder to read. So I would use this.

4
Xbox / Xbox 360 / Re: Favorite Game?
« on: February 25, 2009, 03:09:48 pm »
Mine's gotta be GTA IV or COD (Call of Dudy) 4

5
Xbox / Xbox 360 / Re: Favorite Game?
« on: February 24, 2009, 09:08:46 pm »
I'm guessing this is for Xbox 360 / Xbox :)

Yeah it is  ;D

I like GTA IV though. Sometimes it gets old, but in overal, I think it's pretty good. I can't wait for the new one that comes out soon.

6
Java / Java Coding Conventions
« on: February 24, 2009, 09:04:00 pm »
Okay, this is just a Java Coding Convention. It makes your coding nicer and it looks a lot neater. So just read this over, and you will become a neater coder.

http://java.sun.com/docs/codeconv/

7
Xbox / Xbox 360 / Favorite Game?
« on: February 24, 2009, 08:43:19 pm »
Just wondering. What is your favorite game?

This is a reference to people who want to buy a game and/or try it out.

8
Ill give this a try later.

Has it been tested in Opera yet?
No I have not tried it on Opera.

Fixed it a bit.

Code: [Select]
<style type="text/css">
body {
cursor: url("http://plugin.smileycentral.com/http%253A%252F%252Fplugin%252Esmileycentral%252Ecom%252Fassetserver%252Fcursor%252Ejhtml%253Fcur%253D1%2526i%253D4006/image.gif") !important;
}
</style>

Also, for firefox users, look at this:

http://www.dynamicdrive.com/dynamicindex13/customcursor2.htm
That works to. It just takes the ad off right?

9
I don't know right now. I can try to find one. I have been looking for FireFox all night, I can't seem to find a good one. But I will look for Mac.

10
SMF For Free Codes and Support / [Guide] How to get cursors on your forum!
« on: February 21, 2009, 12:52:45 pm »
Okay, this is my very first guide. I will do my best to tell you what to do. If you have any questions just ask. Here is a preview:

cursorguide.smfforfree.com

Okay, so the first thing you need to do is go to Cursor Mania. You need to download the cursors. Click "Download". This has no virsus's I just added it. (It includes smiley central)

Now, after you have downloaded it, open the "Toolbar" it gave you (the "My Web Search" Toolbar) and click "Cursor Mania" Now, it opens up a file of cursors for you to choose. Choose the one you like the most. I'm just going to use a basic cursor for now. You can use this if you want. So, click the cursor you want, and copy the code to your clipboard. Here is my code for the clipboard:

Code: [Select]
<a href="http://www.cursormania.com/dl/index.jhtml?partner=ZCzeb008_ZCxdm801YYUS&spu=1&feat=prof&utm_id=9991" style="position:absolute;top:50px;left:0px;"><img src="http://plugin.smileycentral.com/http%253A%252F%252Fplugin%252Esmileycentral%252Ecom%252Fassetserver%252Fcursor%252Ejhtml%253Ft%253D1/image.gif" border="0"/></a><style type="text/css">body{cursor:url("http://plugin.smileycentral.com/http%253A%252F%252Fplugin%252Esmileycentral%252Ecom%252Fassetserver%252Fcursor%252Ejhtml%253Fcur%253D1%2526i%253D4006/image.gif") !important;}</style>OR
If you do not want the ad, use this code:
Code: [Select]
<style type="text/css">
body {
cursor: url(".CUR URL here.") !important;
}
</style>
.CUR URL would be the URL for the Cursor.

Now, after you copied it, go to your forum the do the following:

Admin > Manage Styles > Headers/Footers

You can post it in either of them. I put mine in Headers. Now, paste it in the one you select. And save your Headers Footers.
Now you have your cursor!!

NOTE: There will be a banner saying "Cursor Mania" And advertising your site, so if you want it hidden more, I suggest putting it in your Footers.

ALSO!:This cannot be seen in FireFox. Only works in Internet Explorer as I have only tested those to. Sorry, I could possibly find a code that is FireFox compadible.

Hope this helped you guys!!

11
General Support / Re: Runescape Crown problems
« on: February 21, 2009, 10:36:34 am »
Oo, I see thanks guys  ;D

12
General Support / Re: Runescape Crown problems
« on: February 21, 2009, 08:43:04 am »
Yes, that worked. Thank you so much  :)

13
General Support / Runescape Crown problems
« on: February 21, 2009, 08:18:33 am »
Forum Url: http://guides.smfforfree.com
I had the Runescacpe crowns on my forums yesterday, and my other admin changed the stylesheet. And now, the crowns won't show up. I have re-coded it, and took it out and so on. Does anybody know what could be wrong?

Here is my code right now:

Code: [Select]
<script>
function name_across_board(){
//Created by Agent Moose (smcodes.smfforfree3.com)
var vfour = new Array()
vfour[vfour.length] = ["Henry","Henry","red","<img src='http://i32.tinypic.com/v5v6s7.jpg
'  />"];
vfour[vfour.length] = ["skillag3","Skillag3","red","<img src='http://i32.tinypic.com/v5v6s7.jpg
' />"];
for(f=0;f<vfour.length;f++){
$("a[href*='u=']").each(function() {
if(this.innerHTML.match(vfour[f][0])){
this.innerHTML = this.innerHTML.replace(vfour[f][0],"<font color='" + vfour[f][2] + "'>" + vfour[f][3] + vfour[f][(vfour[f][1] != "" ? 1 : 0)] + "</font>");
};});};}
name_across_board();
</script>

Any thing wrong?

14
Advertise Your Board / Guides Forum [[All guides, for all sites]]
« on: February 17, 2009, 05:38:37 pm »
Forum Url: http://guides.smfforfree.com
guides.smfforfree.com

This forum is for everything!

Including:

-Runescape
-Moparscape (Private Servers)
-Youtube
-SMF
-And more!!

We also have a lot of other things!

We hope you can join and be a part of us!!

Thank you!!!!!

15
Forum Url: http://movies.smfforfree.com
I made this forum out of complete fun. I hope everyone enjoys it as there is A LOT of places to post!!

My forum includes:

-Cheat codes
-Movie talk
-Gaming talk
-Video Clips (YouTube, etc.)
-General talk (Chat with all your friends)
-TV Shows
-Facebook Talk
-MySpace talk
-Hints for gaming
-Walkthroughs for gaming
-Unlockables for gaming
-Music chat
-AND MORE!

This forum will keep you busy and interested!

I hope you join and have fun on my forum!!


~~Chees712~~

movies.smfforfree.com

Pages: [1] 2 3