IPB

Welcome Guest ( Log In | Register )



Tags
This content has not been tagged yet
2 Pages V   1 2 >  
Reply to this topicStart new topic

Games For Website


Randle Densmore ...
no avatar
Member [Level 1]
****
Group: Members
Posts: 58
Joined: 16-March 05
Member No.: 4,592



Post #1 post Mar 21 2005, 11:13 PM
I am new at this website stuff and I would like to put games on it. I don't know where to get good games and I was wondering if anyone could help me with that problem. If so just post it here.

Thank You!
Go to the top of the page
+Quote Post
stifmeister659
no avatar
Member [Level 1]
****
Group: Members
Posts: 55
Joined: 28-February 05
Member No.: 4,039



Post #2 post Mar 21 2005, 11:26 PM
Go to http://php.net it tells you everything you need to know about coding.

Message from snlildude87: The website is http://www.php.net/. Please make sure you have the correct URL before posting, stifmeister659. On a side note, I don't think Randle is asking about PHP coding. smile.gif

This post has been edited by snlildude87: Mar 21 2005, 11:34 PM
Go to the top of the page
+Quote Post
snlildude87
no avatar
Moderator
***************
Group: Members
Posts: 2,325
Joined: 8-March 05
From: Mawson, Antarctica
Member No.: 4,254



Post #3 post Mar 21 2005, 11:31 PM
Randle, there are many ways to get games from other websites onto yours. The best method is to add them as you come across and play them. For example, if you find a game you like at...say http://gamesquared.com, then the first thing you need to do is look at the source code of the page. Then, do a search (Ctrl+F) in the source code for ".swf" (without quotes). Press F3 until you find a string that follows this pattern: http://****/****.swf (this is the URL of your game). Select/Highlight the entire string (from "http" to ".swf") and to Notepad. Then, open another instance of Notepad. This time, save the file (blank file) in Notepad as mygame.html. Copy and paste the following code to mygame.html:

CODE

<http>
 <head>
   <title>My Game</title>
 </head>
 <body>
   <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="625" height="480">
     <param name="movie" value="http://********.swf">
     <param name="quality" value="high">
     <embed src="http://********.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="625" height="480"></embed>
   </object>
 </body>
</html>

Do you see "http://********.swf" above? Replace everything from "http" to "swf" with the URL of your game (you have this URL pasted in the other instance of Notepad).

Wow. That's a lot of stuff, and I hoped I explained everything well enough for you to understand. If you don't understand, however, PM me and I'll be glad to show you! smile.gif
Go to the top of the page
+Quote Post
round
no avatar
Super Member
*********
Group: Members
Posts: 463
Joined: 8-November 04
Member No.: 2,186



Post #4 post Mar 22 2005, 02:33 AM
You can download and add flash games to put on your site at
flaskit.com
There's tons more there you could add and huge tutorial section if you want to learn flash or need help add the games to site.
round
Go to the top of the page
+Quote Post
scab_dog
no avatar
V-Man
*********
Group: Members
Posts: 370
Joined: 13-March 05
From: In live on Earth which is in the Milky Way which is in the Universe
Member No.: 4,441
myCENT:ZERO



Post #5 post Mar 22 2005, 04:56 AM
Hi, I've been adding games to my website as well. If you ask me I would recommend you to MINICLIP. Its a great website they have a variety of games for you to play and download!!.

From
.::DAMAN::.
Go to the top of the page
+Quote Post
Aaron
no avatar
Newbie
*
Group: Members
Posts: 9
Joined: 25-March 05
From: Singapore
Member No.: 4,895



Post #6 post Mar 25 2005, 06:03 PM
The links you gave sucks because most of them got it's advertisements in it.
I am finding one that don't have them directly installed in the .swf.
Go to the top of the page
+Quote Post
demongaara
no avatar
Member [Level 1]
****
Group: Members
Posts: 72
Joined: 26-September 04
Member No.: 1,273



Post #7 post Mar 26 2005, 01:00 AM
id say just add some flash games people have made, with permission of course
Go to the top of the page
+Quote Post
beastjordan
no avatar
Member [Level 2]
*****
Group: Members
Posts: 77
Joined: 18-August 06
Member No.: 28,484



Post #8 post Aug 18 2006, 12:48 PM
Hi i know a really good site it has lots of games which come with the html codes it's http://www.funcave.com/
hope this helps! biggrin.gif
Go to the top of the page
+Quote Post
masterleous
no avatar
Advanced Member
*******
Group: Members
Posts: 108
Joined: 9-July 06
Member No.: 26,360



Post #9 post Aug 18 2006, 05:01 PM
Their are so many website who offer free downloadable/uploadable games without adds for your websute. have a look at

http://www.miniclips.com

and make a search on Google and Yahoo for "Free Games for Website" you will get many many websites.

For example this website http://www.hallagulla.com have many games in their website, but these games are not created by these guys, they download free games and upload on their space and submit some necessary coding for users........

HAVE A NICE DAY
Go to the top of the page
+Quote Post
beastjordan
no avatar
Member [Level 2]
*****
Group: Members
Posts: 77
Joined: 18-August 06
Member No.: 28,484



Post #10 post Aug 19 2006, 09:34 PM
QUOTE(snlildude87 @ Mar 22 2005, 12:31 AM) [snapback]62690[/snapback]

Randle, there are many ways to get games from other websites onto yours. The best method is to add them as you come across and play them. For example, if you find a game you like at...say http://gamesquared.com, then the first thing you need to do is look at the source code of the page. Then, do a search (Ctrl+F) in the source code for ".swf" (without quotes). Press F3 until you find a string that follows this pattern: http://****/****.swf (this is the URL of your game). Select/Highlight the entire string (from "http" to ".swf") and to Notepad. Then, open another instance of Notepad. This time, save the file (blank file) in Notepad as mygame.html. Copy and paste the following code to mygame.html:

CODE

<http>
 <head>
   <title>My Game</title>
 </head>
 <body>
   <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="625" height="480">
     <param name="movie" value="http://********.swf">
     <param name="quality" value="high">
     <embed src="http://********.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="625" height="480"></embed>
   </object>
 </body>
</html>

Do you see "http://********.swf" above? Replace everything from "http" to "swf" with the URL of your game (you have this URL pasted in the other instance of Notepad).

Wow. That's a lot of stuff, and I hoped I explained everything well enough for you to understand. If you don't understand, however, PM me and I'll be glad to show you! smile.gif

Hi snlildude87 i looked at your post however i don't understand please help me thanks alot
Go to the top of the page
+Quote Post

2 Pages V   1 2 >
Reply to this topicStart new topic

Collapse

> Similar Topics

    Topic Title Replies Topic Starter Views Last Action
No New Posts   5 chelcy 771 5th August 2004 - 04:59 AM
Last post by: MSTR
No New Posts 9 noxit 692 21st June 2004 - 08:16 PM
Last post by: wassie
No new   17 -iancovenant- 748 30th July 2006 - 08:15 PM
Last post by: Panzer
No new   21 Dagoth Nereviar 1,063 11th November 2008 - 03:27 AM
Last post by: Ruben
No new   72 Ariel 11,453 16th April 2006 - 09:03 PM
Last post by: ThePuk
No New Posts   5 rpgsearcherz 133 20th October 2008 - 06:00 PM
Last post by: Saint_Michael
No New Posts   3 Thunder 447 28th July 2004 - 02:35 AM
Last post by: killer
No New Posts   12 EricDrinkard 1,466 6th August 2004 - 09:29 PM
Last post by: Vacant
No New Posts   0 andyy15 420 29th July 2004 - 03:59 PM
Last post by: andyy15
No new 32 psp-playstation 2,098 20th October 2004 - 12:04 PM
Last post by: timstokman


 



RSS