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

Pages: [1] 2
1
General Chat / Re: What is the best gaming console?
« on: November 30, 2008, 04:05:52 am »
Cool.

2
General Chat / Re: What is the best gaming console?
« on: November 29, 2008, 10:20:15 am »
Lol, nice choice. Considering that Sony let-down those Ps3 fans.

3
Guides and Tutorials / Re: [Guide] How to Use Your Own Rank Images
« on: November 29, 2008, 10:04:22 am »
Ahhaa, I
Dude, cool guide.But one thing: I put in this code:
Quote
<script type='text/javascript'>
/*
Change Any Image On Page
Created by iFusion
*/
var img_b = new Array();

img_b[img_b.length++] = [ "http://images.smfboards.com/ranks/1starorange.gif" , "http://images.smfboards.com/ranks/dl_ranks2/rank_admin.gif" ]
img_b[img_b.length++] = [ "http://images.smfboards.com/ranks/1staraqua.gif" , "http://images.smfboards.com/ranks/dl_ranks2/rank_moderator.gif" ]
img_b[img_b.length++] = [ "http://images.smfboards.com/ranks/1starlime.gif" , "http://images.smfboards.com/ranks/dl_ranks2/rank_moderator.gif" ]
img_b[img_b.length++] = [ "http://images.smfboards.com/ranks/3yellow.gif" , "http://images.smfboards.com/ranks/dl_ranks2/rank_0.gif" ]
img_b[img_b.length++] = [ "http://images.smfboards.com/ranks/3yellow.gif" , "http://images.smfboards.com/ranks/dl_ranks2/rank_1.gif" ]
img_b[img_b.length++] = [ "http://images.smfboards.com/ranks/3yellow.gif" , "http://images.smfboards.com/ranks/dl_ranks2/rank_2.gif" ]
img_b[img_b.length++] = [ "http://images.smfboards.com/ranks/3yellow.gif" , "http://images.smfboards.com/ranks/dl_ranks2/rank_3.gif" ]
img_b[img_b.length++] = [ "http://images.smfboards.com/ranks/3yellow.gif" , "http://images.smfboards.com/ranks/dl_ranks2/rank_4.gif" ]
img_b[img_b.length++] = [ "http://images.smfboards.com/ranks/3yellow.gif" , "http://images.smfboards.com/ranks/dl_ranks2/rank_5.gif" ]
img_b[img_b.length++] = [ "http://images.smfboards.com/ranks/3yellow.gif" , "http://images.smfboards.com/ranks/dl_ranks2/rank_6.gif" ]
img_b[img_b.length++] = [ "http://images.smfboards.com/ranks/3yellow.gif" , "http://images.smfboards.com/ranks/dl_ranks2/rank_mvp.gif" ]
img_b[img_b.length++] = [ "http://images.smfboards.com/ranks/3yellow.gif" , "http://images.smfboards.com/ranks/dl_ranks2/rank_moderator.gif" ]

var all_images = document.getElementsByTagName('IMG');
for(i=0;i<all_images.length;i++){
for(j=0;j<img_b.length;j++){
   if(all_images.src == img_b[j][0]){
     all_images.src = img_b[j][1];
}}}
</script>

And it's still coming up with the old ones. I put it into my Footer, and it still didn't work!

Please help
Ahaa I know what I did wrong, I didn't put in the name of the Picture  :uglystupid2: :crazy2: :2funny:

Thank you dude
-Apple.

4
Guides and Tutorials / Re: [Guide] How to Use Your Own Rank Images
« on: November 29, 2008, 09:51:19 am »
Dude, cool guide.But one thing: I put in this code:
Quote
<script type='text/javascript'>
/*
Change Any Image On Page
Created by iFusion
*/
var img_b = new Array();

img_b[img_b.length++] = [ "http://images.smfboards.com/ranks/1starorange.gif" , "http://images.smfboards.com/ranks/dl_ranks2/rank_admin.gif" ]
img_b[img_b.length++] = [ "http://images.smfboards.com/ranks/1staraqua.gif" , "http://images.smfboards.com/ranks/dl_ranks2/rank_moderator.gif" ]
img_b[img_b.length++] = [ "http://images.smfboards.com/ranks/1starlime.gif" , "http://images.smfboards.com/ranks/dl_ranks2/rank_moderator.gif" ]
img_b[img_b.length++] = [ "http://images.smfboards.com/ranks/3yellow.gif" , "http://images.smfboards.com/ranks/dl_ranks2/rank_0.gif" ]
img_b[img_b.length++] = [ "http://images.smfboards.com/ranks/3yellow.gif" , "http://images.smfboards.com/ranks/dl_ranks2/rank_1.gif" ]
img_b[img_b.length++] = [ "http://images.smfboards.com/ranks/3yellow.gif" , "http://images.smfboards.com/ranks/dl_ranks2/rank_2.gif" ]
img_b[img_b.length++] = [ "http://images.smfboards.com/ranks/3yellow.gif" , "http://images.smfboards.com/ranks/dl_ranks2/rank_3.gif" ]
img_b[img_b.length++] = [ "http://images.smfboards.com/ranks/3yellow.gif" , "http://images.smfboards.com/ranks/dl_ranks2/rank_4.gif" ]
img_b[img_b.length++] = [ "http://images.smfboards.com/ranks/3yellow.gif" , "http://images.smfboards.com/ranks/dl_ranks2/rank_5.gif" ]
img_b[img_b.length++] = [ "http://images.smfboards.com/ranks/3yellow.gif" , "http://images.smfboards.com/ranks/dl_ranks2/rank_6.gif" ]
img_b[img_b.length++] = [ "http://images.smfboards.com/ranks/3yellow.gif" , "http://images.smfboards.com/ranks/dl_ranks2/rank_mvp.gif" ]
img_b[img_b.length++] = [ "http://images.smfboards.com/ranks/3yellow.gif" , "http://images.smfboards.com/ranks/dl_ranks2/rank_moderator.gif" ]

var all_images = document.getElementsByTagName('IMG');
for(i=0;i<all_images.length;i++){
for(j=0;j<img_b.length;j++){
   if(all_images.src == img_b[j][0]){
     all_images.src = img_b[j][1];
}}}
</script>

And it's still coming up with the old ones. I put it into my Footer, and it still didn't work!

Please help

5
General Support / Re: need help!
« on: November 29, 2008, 09:04:50 am »
1) Admin CP Boards Section Guide
       

2) Go to the Members Profile > Account Related Settings
Change their "Primary Membergroup" to the appropriate membergroup.

Or, you could just simply go onto Admin > Membergrops > Choose the group > List of Members to add > add member.

And you're done.

6
Advertise Your Board / moparscapev3.smfforfree3.com/
« on: November 29, 2008, 08:36:39 am »
Forum Url: http://moparscapev3.smfforfree.com
Hello, please join my main website: moparscapev3.smfforfree3.com/ we would like more users to come, I think everyone on our site is ranked, no matter who they are. If you would like to join, then join.

Thanks,
-Apple.

7
General Chat / How to make a PSP Theme.
« on: November 29, 2008, 08:29:05 am »
Right... I'm not quite sure how long it will take to make a PSP theme, but here it goes...
Go to http://psp-themes.net/ then click on "PSP Theme Creator" if you are using Firefox, it should come up with something like this:


If you are using Internet Explorer, just click save file.

Once you have done everything, and if you have WinZip, then open up the PSP theme creator. Press I Agree on the WinZip (if it comes up with the box). Then double-click on the "themeconv.exe". No need to read "psp-themes.net.txt". It should come up with "Custom Theme Converter". The title box is the name of your theme. Product ID is your PSP ID. To see what it is, take off the battery compartment, and take out the battery and in a small white box, it should say "Serial No." put that in the Product ID. The final box, is the Version of your PSP. To see the version of your PSP, go to Settings -> System Settings (turn on your PSP...) Then go onto System Information. It should come up "System Software", "Nickname", and "MAC Address" My System Software is Version 5.02. Next is the Wallpaper (this will be the background of your PSP) you will need a .BMP file by 480x272 and 24bit colour direct image. Next are the icons, change them if you want to. First level icons are the icons within the main icons. And then you're basically finished! Don't worry about anything else! :D

Have fun with your PSP theme!

8
General Chat / What is the best gaming console?
« on: November 29, 2008, 08:05:40 am »
I personally think it's the Ps3, my opinion, so vote! :P:D;D

9
Gaming / Grand Theft Auto IV/ Call Of Duty 5
« on: November 29, 2008, 08:02:50 am »
I think that Grand Theft Auto IV and Call Of Duty 5 are the best games out for Ps3. I've got a Ps3, and 360, and PSP, the list goes on, but out of all the consoles I've ever had, I think the Ps3 is the best console. Well done Sony! Took you long enough to release it, with all the errors and stuff :P

-Apple.

10
General Chat / Re: So,where is everyone from?
« on: November 29, 2008, 07:59:07 am »
Im from the UK, Southwest uk actually, id put pics up but they would just depress you  ;D actually i love where i live im near some historical sites like stonehenge but the weather is depressing we're still waiting for summer to say hello at the moment!

I live in the UK too, we're still waiting for Summer. Also, it's only been rain, and rain all Summer! How are we meant to get our own Jacoozy (or however you spell it) out now?! We have loads of Summer stuff, but I don't think it's gonna come, EVER! :'(:'(

11
General Chat / Re: Favorite sports team
« on: November 29, 2008, 07:53:52 am »
BASEBALL: Don't Watch it.
FOOTBALL: Manchest Utd.
BASKETBALL: Don't watch it.

12
Suggestions / Email V
« on: November 29, 2008, 07:47:16 am »
I personally think it would be cool to be able to make your own SMF email. This would come in handy, because if you wanted to ban someone or mute them, or just plainly give them another chance, you could email them with an SMF email like: Administrator@yourSMF.com. This would make it pretty cool, and also, most other free hosting sites have them too. If you cannot make an email, it doesn't really matter, it was just a cool idea by me :P

Thanks,
-Apple

13
General Discussion / Re: How did you find SMF For Free?
« on: November 29, 2008, 07:44:27 am »
I found this website on Google, I've tried alot of other Free Website Hosting services, none of them are as good as compared to SMF. This is the best forums site I've ever seen... But you've got to put a SMF email too. So when you want to ban someone or something, you could email them at something like this Administrator@yourSMF.com then it will be totally cool. :)

14
General Chat / Re: Um... Help?
« on: November 29, 2008, 07:36:51 am »
Uh.. I pressed "Font size" and now the whole screen has zoomed in on this website, and all the other websites are fine, it's just this site..
Can you please tell me how to get it back?


Thanks

-Apple.

Aha, doesn't matter, got it back :D Pressed CTRL + + somehow? Ah well, press CTRL and - to get it back to normal :D

15
General Chat / Um... Help?
« on: November 29, 2008, 07:35:50 am »
Uh.. I pressed "Font size" and now the whole screen has zoomed in on this website, and all the other websites are fine, it's just this site..
Can you please tell me how to get it back?


Thanks

-Apple.

Pages: [1] 2