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.


Topics - blahs

Pages: [1] 2 3
1
General Support / I can't find it...
« on: April 24, 2008, 06:07:30 pm »
I go to www.smfforfree.com then click on create forum but it takes me to create a smfforfree2 forum how do i mkae a smfforfree4 forum???

3
General Support / Help!
« on: April 16, 2008, 02:23:37 pm »
Forum Url: http://silabforums.smfforfree4.com
Ok well I set the member list to 50 members a page before now it says at bottom of forums there is 51 members in the staff page its stuck at 48 and new members won't show up on it!!!
so help with that also how i change how many members per page on the member list and whats the default amount of members???

HelP!!!  :D

4
General Support / Where it says...
« on: March 17, 2008, 04:07:48 pm »
Forum Url: http://silabforums.smfforfree4.com
Were it says at the bottom of your forums "users online in the past 15 mins:" how do i make it say like "users online in the past 20 mins:" or something I saw on http://coreyscape.smfforfree4.com

5
General Discussion / Question...
« on: March 16, 2008, 08:07:18 pm »
If you come out with server 5 will you still make updates to server 4 or just leave it the way it is???

6
Code Requests / [Req] code...
« on: March 15, 2008, 05:06:38 pm »
Can anyone make a code or something that will alow me to add my own games to arcade like minigames ive found???

7
General Discussion / How many staff members you got?
« on: March 15, 2008, 04:48:54 pm »
Well I have 5 just asking how many should you have???

8
General Support / smf forums down?
« on: March 13, 2008, 07:11:30 pm »
Ive tried to get on 4 forums in a row and it says:
Connection Problems
Sorry, SMF For Free was unable to connect to the database. This may be caused by the server being busy. Please try again later.

SMF For Free Support forums located at
http://support.smfforfree3.com

Also Internet Explorer can not display the webpage.

It says these on 1 smfforfree3 forum and 3 smfforfree4 forums urls:
http://silabforums.smfforfree4.com
http://wiitalk.smfforfree4.com
and http://tteessttforum.smfforfree4.com
Btw my internet connection is really good!

9
Graphics / [Req] Banner...
« on: March 13, 2008, 08:04:27 am »
I would like a gutair hero 3 banner made plz and the writing:
In the back:
Silabsoft development
In the foreground:
Join our forums!

Also plz make the writing readable!!!
Tyvm!

10
SMF For Free Codes and Support / [Code] button that says your name!
« on: March 12, 2008, 12:03:46 am »
Preview: http://thetteessttforum.smfforfree4.com/index.php click on the button that says "Enter your name!"!
This code will make a button that when you click it opens a program and then you enter your name and it says "Hi 'your name'"!
code:
Put this in your headers or where ever you want it:
Code: [Select]
<SCRIPT language="JavaScript">
<!--
function getname()
{
var yourname=prompt('Enter your name, NOW!','');
if (yourname.length > 10)
 {
  alert('That name is just too long, give me a shorter one!');
  getname();
 }
else
  alert('Hi '+yourname+'!');
}
//-->
</SCRIPT>


Then enter this code:
Code: [Select]
<FORM>
<input type="button" value="Enter your name!" name="button 9" onclick="window.location='javascript:getname()'"<
</FORM>

On the first code you can edit:
-where is says if (yourname.length > 10) edit "10" to edit the max charecters you can enter.
-where it says var yourname=prompt('Enter your name, NOW!',''); edit "Enter your name, NOW!" to what you want it to say on the application!
In the second code you can edit:
-Where it says value="Enter your name!"  edit "Enter your name!" to edit what the button says.
-I don't care i wouldn't but you can change where it says name="button 9" change the name it dosen't show up anywhere so whats the point rofl... :)
Enjoy!!! :)
-Blahs

11
JavaScript / [Help] with my code...
« on: March 11, 2008, 11:13:25 pm »
I made this code its supposed to put a password on your forums or website the default pass is "cool".

code:

Code: [Select]
<HEAD>
<SCRIPT language="JavaScript">
<!--hide

var password;

var pass1="cool";

password=prompt('Please enter your password to view this page!',' ');

if (password==pass1)
  alert('Password Correct! Click OK to enter!');
else
   {
    window.location="www.barbie.com";
    }

//-->
</SCRIPT>
</HEAD>


See var password;
This creates a variable named "password".

var pass1="cool";
This creates a password that will be accepted by the script. We name it pass1 in case we would like to have more than one acceptable password. ( ie pass2, pass3 etc. ).

password=prompt('Please enter your password to view this page!',' '); This is what creates the prompt for the user to enter a password. Whatever the user enters in the prompt will be the value of the variable "password".

if (password==pass1)
alert('Password Correct! Click OK to enter!');

This is where we verify the password. The variable "password" is what the user just typed into the prompt. The variable "pass1" is the only password we will accept. If they are the same, we send them an alert that the password was OK and they can continue.

else
{
window.location="www.barbie.com";
}
This is what happens when they type in an incorrect password. We send them to a page of our choice. In IE4, it looks like nothing happened, it just reloads this page. In NS3 and 4 you will probably see the protected page for a quarter of a second. I said it wasn't the most secure script out there, so I would recommend the links at the end of the tutorial so you can get a more secure script. I chose to send it back to this page (jpass.htm), but you can type any url here you want. Maybe you could use something like:
window.location="http://www.barbie.com";
Make them cringe a little.......thats what mine is...
When i tried on test forum it kept redirecting me to a weird site it was and advertizing site didn't evan ask for pass whats wrong with it???



12
Well test is at: http://thetteessttforum.smfforfree4.com/index.php (its said to default code so it will call you dude rofl...
With this code i made you can make it so say you had someone on your forums named Blahs lol then with this code you can make it so when they load it you can make it say for example Welcome to my forums blahs! but olny for them, code:

Code: [Select]
<SCRIPT language="JavaScript">
<!--hide 
 var yourname= prompt('Please enter your name, so you can get a special greeting', ' ');

 if ( (yourname==' ') || (yourname==null) )
 {
   yourname="Dude";
 }

//-->
</SCRIPT>

</HEAD>

<BODY>

<SCRIPT language="JavaScript">
<!--hide
 document.write("<CENTER><H1>Hello, " + yourname + " ! Welcome to My Page! <\/H1><\/CENTER>");

//-->
</SCRIPT>

</BODY>

So edit where it says "! Welcome to my page!" to display what it will say after their name... edit where it says:
yourname="Dude"; edit dude to decide what your forum will call them... also edit where it says:
if ( (yourname==' ') in the ' ' put their name so if there name is in the ' ' when they log on it will display for olny them. right now with the code i say it will say to Everyone Hello, dude! Welcome to my page... if you want edit where it says:
document.write("<CENTER><H1>Hello, edit hello to edit what it says before their name...enjoy! :)

-Blahs




13
General Chat / Im goin away for 14 days...
« on: March 11, 2008, 01:56:52 pm »
Im goin away for 14 days to my cottage i might be able to go on if i sneak on my grandmas laptop while they are out rofl... :)  see yall l8ter...

14
SMF For Free Codes and Support / [Code] cool button codes...
« on: March 11, 2008, 01:25:29 pm »
Preview: http://thetteessttforum.smfforfree4.com/index.php (at the top i put as headers) (click the "Click here!" for the alert one and the "Go to my other page!" for the link one)!

This one makes a button a link:
Code: [Select]
<FORM>
<INPUT type="button" value="Go to my other Page!" name="button6" onClick="window.location='Website url here!'">
</FORM>

As you may now where is says "Website url here!" is where you put the site url...


You can evan make it with a button so when you click the button an alert comes up:

Code: [Select]
<FORM>
<INPUT type="button" value="Click here!"
onClick="alert('Hey!')">
</FORM>

Just edit the "Click here!" to make what it says on the button and Hey! to edit what is says!



This one won't work with smf for free forums but it works on normal sites it changes the color of page to yellow with a button red and white:

Code: [Select]
<FORM>
<INPUT type="button" value="Change to Yellow!" name="button3" onClick="document.bgColor='yellow'"> <br>
<INPUT type="button" value="Change to Red!" name="button4" onClick="document.bgColor='red'"> <br>
<INPUT type="button" value="Change back!" name="button5" onClick="document.bgColor='white'"> </FORM>

There will be 3 buttons one for Yellow, one for red, and one for default...




15
Code Requests / [Request] Awards
« on: March 11, 2008, 12:22:17 pm »
Can someone come up with a code so under the posts and money there is a box for awards that i can add peoples awards too? like I want a paint award, a top poster, most rep and a few others.... anyone???

Pages: [1] 2 3