|
Joined: Jan 2003
Posts: 118
Member
|
Member
Joined: Jan 2003
Posts: 118 |
Ahh.. that was the ticket. Thanks!
-GATOR
"Pain is temporary, Pride is forever"
|
|
|
|
Joined: Feb 2003
Posts: 179
Member
|
Member
Joined: Feb 2003
Posts: 179 |
psssst.... the flash/graphics link is busted 
|
|
|
|
Joined: Jan 2003
Posts: 3,456 Likes: 2
Master Hacker
|
Master Hacker
Joined: Jan 2003
Posts: 3,456 Likes: 2 |
download the version in the other games thread
|
|
|
|
Joined: Oct 2001
Posts: 24
Junior Member
|
Junior Member
Joined: Oct 2001
Posts: 24 |
I know the games are free, but I just want to make sure that there is no copyright violation if we host the games on our site. I don't want to get sued by Miniclip.com for copyright infringement.
|
|
|
|
Joined: Jan 2000
Posts: 5,833 Likes: 20
UBBDev / UBBWiki Owner Time Lord
|
UBBDev / UBBWiki Owner Time Lord
Joined: Jan 2000
Posts: 5,833 Likes: 20 |
You can read the MiniClip.com Game License at any time. quote: GRANT OF LICENSE Miniclip Ltd. grants you a limited non-exclusive license to use the SOFTWARE. The license fee is a flexible pricing schedule that may be imposed and altered at any time. At this moment the license fee is free. You agree to pay any such licensing fee that may be imposed in the future or to remove the SOFTWARE from your site immediately. Miniclip Ltd. is not obligated to supply any support whatsoever. Miniclip Ltd reserves the right to revoke this License and or restrict the use of the SOFTWARE on a website or its distribution at any time, for any reason. The SOFTWARE may not be used on sites that are pornographic, hate related, racist or other types of sites that Miniclip Ltd. in it's sole discretion sees as being unsuitable. Miniclip Ltd. may also at its sole discretion exclude websites or companies from software licenses. If you are using the SOFTWARE on a website and you are notified by Miniclip Ltd. to remove it you agree to do so immediately.
|
|
|
|
Joined: Oct 2001
Posts: 24
Junior Member
|
Junior Member
Joined: Oct 2001
Posts: 24 |
Thanks, Gizzy. The information was helpful.
|
|
|
|
Joined: Sep 2005
Posts: 136
Journeyman
|
Journeyman
Joined: Sep 2005
Posts: 136 |
Hey Ian, where did you move the game download files to?
|
|
|
|
Joined: Jan 2003
Posts: 3,456 Likes: 2
Master Hacker
|
Master Hacker
Joined: Jan 2003
Posts: 3,456 Likes: 2 |
|
|
|
|
Joined: Sep 2005
Posts: 136
Journeyman
|
Journeyman
Joined: Sep 2005
Posts: 136 |
|
|
|
|
Joined: Mar 2001
Posts: 7,394
Admin / Code Breaker
|
Admin / Code Breaker
Joined: Mar 2001
Posts: 7,394 |
The reason you see games such as rocketman although there is no Shockwave Flash file is that there is an image file. You have to delete it as well (/ubb/games/rocketmanbigicon.gif for example). If you added an swf file but you don't see the icon, it's because you have to add a gif file with a corresponding name + "bigicon". Also, you have to add the names of each game you add to vars_wordlets_games.cgi. For example, for Rocket Man, add the following into vars_wordlets_games.cgi (around the middle): "rocketman" => "Rocket Man", For the other games, replace "rocketman" with what you see at your /games page: $vars_wordlets_games{crash} is for "crash". Replace "Rocket Man" with the name you want the game to have.
|
|
|
|
Joined: Sep 2005
Posts: 136
Journeyman
|
Journeyman
Joined: Sep 2005
Posts: 136 |
Its exactly how I copied it out of the files
%vars_wordlets_games = ( q!crashdown! => q!Crashdown!, q!battleships! => q!Battleships!, q!flashman! => q!Flash Man!, q!smashing! => q!Smashing!, q!rocketmandemo! => q!Rocket Man!, q!sheepish! => q!Sheepish!, q!stressgame! => q~Stress Relief! Paintball~, q!rigelianhotshots! => q!Rigelian Hot Shots!, q!games_games! => q!UBB.Games!, q!games_index! => q!Games index!, q!games_link! => q!games!, q!games_title! => q!Play some games.!, q!games_courtesy! => q!Games Courtesy of!, q!games_mod! => q!Games Mod!, q!choose! => q!Select a game to play.!, q!games_game! => q!Now Playing... !, q!back_games_index! => q!Back to Games index!,
);
1;
====
So I tried this and it still does not work
%vars_wordlets_games = ( q!crashdownwm! => q!Crashdown!, q!battleships! => q!Battleships!, q!flashmanwm! => q!Flash Man!, q!smashing! => q!Smashing!, q!rocketmandemo! => q!Rocket Man!, q!sheepish! => q!Sheepish!, q!stressgame! => q~Stress Relief! Paintball~, q!rigelian_hotshots! => q!Rigelian Hot Shots!, q!games_games! => q!UBB.Games!, q!games_index! => q!Games index!, q!games_link! => q!games!, q!games_title! => q!Play some games.!, q!games_courtesy! => q!Games Courtesy of!, q!games_mod! => q!Games Mod!, q!choose! => q!Select a game to play.!, q!games_game! => q!Now Playing... !, q!back_games_index! => q!Back to Games index!,
);
1;
Then I tried this..
%vars_wordlets_games = ( "crashdownwm" => "Crashdown", "battleships" => "Battleships", "flashmanwm" => "Flash Man", "smashing" => "Smashing", "rocketmandemo" => "Rocket Man", "sheepish" => "Sheepish", "stressgame" => "Stress Relief! Paintball", "rigelian_hotshots" => "Rigelian Hot Shots", q!games_games! => q!UBB.Games!, q!games_index! => q!Games index!, q!games_link! => q!games!, q!games_title! => q!Play some games.!, q!games_courtesy! => q!Games Courtesy of!, q!games_mod! => q!Games Mod!, q!choose! => q!Select a game to play.!, q!games_game! => q!Now Playing... !, q!back_games_index! => q!Back to Games index!,
);
1;
Still nothing
|
|
|
|
Joined: Mar 2001
Posts: 7,394
Admin / Code Breaker
|
Admin / Code Breaker
Joined: Mar 2001
Posts: 7,394 |
It's not "rocketmandemo", it's "rocketman"..
|
|
|
|
Joined: Sep 2005
Posts: 136
Journeyman
|
Journeyman
Joined: Sep 2005
Posts: 136 |
It seems either way I try it I can't get any of it to work, is there any way you can set it right so I can copy paste it, I'm trying really hard but its not helping at all
|
|
|
|
Joined: Sep 2005
Posts: 136
Journeyman
|
Journeyman
Joined: Sep 2005
Posts: 136 |
Alright, I tried to change the games with something else I wanted. But for some reason on the page itself it just says canon or tetris, but in the var's file.. its the right names.. I really don't get it. quote:
%vars_wordlets_games = ( q!cannonblast! => q!cannonblast!, q!Tetriswm! => q!Tetriswm!, q!battleships! => q!Battleships!, q!sheepish! => q!Sheepish!, q!games_games! => q!UBB.Games!, q!games_index! => q!Games index!, q!games_link! => q!games!, q!games_title! => q!Play some games.!, q!games_courtesy! => q!Games Courtesy of!, q!games_mod! => q!Games Mod!, q!choose! => q! Select a game to play.!, q!games_game! => q!Now Playing... !, q!back_games_index! => q!Back to Games index!, ); 1;
on the page quote: [qb] $vars_wordlets_games{cannon}
$vars_wordlets_games{tetris}[/qb]
|
|
|
|
Joined: Jan 2003
Posts: 3,456 Likes: 2
Master Hacker
|
Master Hacker
Joined: Jan 2003
Posts: 3,456 Likes: 2 |
change q!cannonblast! (the first one on the line) to q!cannon!
|
|
|
|
Joined: Sep 2005
Posts: 136
Journeyman
|
Journeyman
Joined: Sep 2005
Posts: 136 |
You know I just figured that out after reading the thread over and over, gods I feel as much as a dumbass as I am probably looking like to you. I got it, I'm catching on.
|
|
|
|
Joined: Mar 2000
Posts: 21,079 Likes: 3
I type Like navaho
|
I type Like navaho
Joined: Mar 2000
Posts: 21,079 Likes: 3 |
hehe, it takes all of us a while to catch on 
|
|
|
|
Joined: Sep 2005
Posts: 136
Journeyman
|
Journeyman
Joined: Sep 2005
Posts: 136 |
Beware, I got a lot more mods I want to do mehehe
|
|
|
|
Joined: Sep 2005
Posts: 44
Member
|
Member
Joined: Sep 2005
Posts: 44 |
Will this work for 6.6 and is there a way to save high scores?? The highscore feature is definately needed.
|
|
|
|
Joined: Jan 2003
Posts: 3,456 Likes: 2
Master Hacker
|
Master Hacker
Joined: Jan 2003
Posts: 3,456 Likes: 2 |
no it won't, and no there isn't
|
|
|
|
Joined: Jan 2005
Posts: 19
Junior Member
|
Junior Member
Joined: Jan 2005
Posts: 19 |
UBB.Games is an excellent add-on! Thank you for your efforts. Some renaming of files, and a reflection of those changes in var_games_wordlets were needed, but apart from that, it's a VERY welcome addition to my forum.
Thanks again!
|
|
|
|
Joined: Mar 2000
Posts: 21,079 Likes: 3
I type Like navaho
|
I type Like navaho
Joined: Mar 2000
Posts: 21,079 Likes: 3 |
hmmm... if you are not logged in and you have it set to members-only AND you have the accelerator turned on, when you click on the ultimatebb.php?/games.html link it sends you to the forum index ( /ultimatebb.cgi?/games.html&r=gamesnoaccess ) but not to the login page... anyway to fix that? I'm not seeing it yet. Using v2.6.1 on ubb 6.7.3 thank you 
|
|
|
|
Joined: Jan 2003
Posts: 3,456 Likes: 2
Master Hacker
|
Master Hacker
Joined: Jan 2003
Posts: 3,456 Likes: 2 |
try replacing the line in ulimatebb.php silly_redirection ("Location: $CGIURL/ultimatebb.cgi$location&r=gamesnoaccess", "noaccess"); with silly_redirection ("Location: $CGIURL/ultimatebb.cgi$location", "noaccess"); I never really check the parameter, back then I just wrote code to match the code already in the file
|
|
|
|
Joined: Mar 2000
Posts: 21,079 Likes: 3
I type Like navaho
|
I type Like navaho
Joined: Mar 2000
Posts: 21,079 Likes: 3 |
grazi, will try it 
|
|
|
Donate to UBBDev today to help aid in Operational, Server and Script Maintenance, and Development costs.
Please also see our parent organization VNC Web Services if you're in the need of a new UBB.threads Install or Upgrade, Site/Server Migrations, or Security and Coding Services.
|
|
Posts: 449
Joined: February 2008
|
|
Forums63
Topics37,575
Posts293,930
Members13,823
|
Most Online6,139 Sep 21st, 2024
|
|
Currently Online
Topics Created
Posts Made
Users Online
Birthdays
|
|
|
|