random saying v2 |
random saying v2 |
Jun 4 2004, 03:35 PM
Post
#1
|
|
![]() Senior Member ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 919 Joined: Apr 2004 Member No: 14,856 |
since i cant edit my post in the scripts section here's the RS v2 (it works this time)
i advise you guys to copy and paste the code into notepad to see better. CODE <!-- begin code provided by createblog.com -->
<script language="JavaScript"> /************************** * Random Saying V2 * * Created for Createblog * * Made by ssj4vegita * **************************/ var Quotation=new Array() /* No need to edit above */ Quotation[0] = "No way...I can...lose... - Squall Leonhart"; Quotation[1] = "I gotta keep going! - Cloud Strife"; /******************************************************************************** *************** * Those are examples above, alter if needed * Follow up like this: Quotation[#] = "Quote Here"; * * Where it says # change to the next number in line and the semi-colons need to be at the end! * ******************************************************************************** ***************/ /**************************** * No need to edit below :P * ****************************/ var Q = Quotation.length; var whichQuotation=Math.round(Math.random()*(Q-1)); function showQuotation(){document.write(Quotation[whichQuotation]);} showQuotation(); </script> <!-- end code provided by createblog.com --> |
|
|
|
T.K.O. random saying v2 Jun 4 2004, 03:35 PM
mystical Updated
http://www.createblog.com/forums/index.php... Jun 4 2004, 04:00 PM![]() ![]() |