Game Programming With Prolog: Ia Gaming (sudoku)

free web hosting
Free Web Hosting > Computers & Tech > Programming > Programming General > Lisp & Prolog (AI Languages)

Game Programming With Prolog: Ia Gaming (sudoku)

Anduril
That's an almost finished code for a sudoku solver in prolog, just missing some backtracking fixes...

CODE
diferents(_,[]).
diferents(0,[A|B]):-diferents(A,cool.gif.
diferents(A,[C|D]):-A\=C,A\=0,diferents(A,D).

repetit([]).
repetit([A|B]):-diferents(A,cool.gif,repetit(cool.gif.

fer_ll(N,L):-fer_ll(N,[],L).
fer_ll(0,L,L).
fer_ll(N,LI,L):-N>0,N1 is N-1,fer_ll(N1,[N|LI],L).

comptapos([],0).
comptapos([A|B],N):-comptapos(B,N1),N is N1+1.

ele_correctes([],_).
ele_correctes(L):-comptapos(L,N),fer_ll(N,LP),append([0],LP,LP2),ele_correctes(L,LP2).
ele_correctes([A|B],LP):-member(A,LP),ele_correctes(B,LP).

verificasubllista([]).
%verificasubllista(L):-ele_correctes(L),repetit(L).
verificasubllista([A|B]):-ele_correctes(A),repetit(A),verificasubllista(cool.gif.

verificasudoku(L,N):-files(L,N,LF),columnes(L,N,LC),reg(L,N,LR),verificasubllista(LF),verificasubllis
ta(LC),verificasubllista(LR).

%verficasudoku([]).
%verificasudoku([A|B]):-verificasubllista(A),verificasudoku(cool.gif.

files([],_,[]).
files(LI,N,[X|Y]):-ll(LI,N,X,RX),files(RX,N,Y).
ll([LI|RF],1,[LI],RF).
ll([LI|RLI],N,[LI|RF],RL):-C is N-1,ll(RLI,C,RF,RL).

columnes([],[],[]).
columnes(A,N,L):-creallistes(A,N,A2),col(A2,L).
col([A,A2|B],L):-afegirelements(A,A2,A3),col2(A3,B,L).
col2(A3,[B1|RB],L):-afegirelements(A3,B1,C),col2(C,RB,L).
col2(RES,[],RES).
afegirelements([X|RX],[Y|RY],[CY|RCY]):-append(X,Y,CY),afegirelements(RX,RY,RCY).
afegirelements([],[],[]).
creallistes([],_,[]).
creallistes(LI,N,[L|RL]):-ll(LI,N,Z,X),creasubllistes(Z,N,L),creallistes(X,N,RL).
creasubllistes(_,0,[]).
creasubllistes(LI,N,[X|Y]):-C is N-1,creasub2(LI,X,RX),creasubllistes(RX,C,Y).
creasub2([LI|RE],[LI],RE).

reg(LI,N,LF):-regions(LI,N,Z),col(Z,P),creasubreg(P,N,L),cridaappend(L,Q),aplana(Q,LF).
creasubreg([],_,[]).
creasubreg([X|Y],N,[Z|T]):-files(X,N,Z),creasubreg(Y,N,T).
regions([],_,[]).
regions(LI,N,[Z|Y]):-ll(LI,N,X,RX),sqrt(N,ARREL),files(X,ARREL,Z),regions(RX,N,Y).
cridaappend([],[]).
cridaappend([X,Y|T],[Z|F]):-append(X,Y,Z),cridaappend(T,F).
aplana([X],X).

completarLlista([],LA,LP,LR):-verificasubllista(LA),invertir(LA,LR).
completarLlista(A,cool.gif:-comptapos(A,N),fer_ll(N,LP),completarLlista(A,[],LP,cool.gif.
completarLlista([0|B],LA,LP,LF):-member(R,LP),completarLlista(B,[R|LA],LP,LF).
completarLlista([A|B],LA,LP,LF):-A\=0,completarLlista(B,[A|LA],LP,LF).

solucionarSudoku(A,N,LR):-files(A,N,cool.gif,completaLlistes(B,LR),verificasudoku(A,N),appll(LR,R),mostraSudoku®.%!!!!!!!!!!!falta verificar sudoku

completaLlistes([],LA,LR):-invertir(LA,LR).
completaLlistes(B,LR):-completaLlistes(B,[],LR).
completaLlistes([A|B],LA,LR):-completarLlista(A,Z),completaLlistes(B,[Z|LA],LR).

mostraSudoku(S):-display('\nSOLUCIÓ CORRECTA\n\n'),mostraSudoku(S,3,3,3).
mostraSudoku([X|RX],0,_,_):-display('\n'),mostraSudoku([X|RX],3,3,3).
mostraSudoku([X|RX],R,0,_):-display('\n'),R2 is R-1,mostraSudoku([X|RX],R2,3,3).
mostraSudoku([X|RX],R,F,0):-display('\t'),F2 is F-1,mostraSudoku([X|RX],R,F2,3).
mostraSudoku([],_,_,_).
mostraSudoku([X|RX],R,F,C):-R>0,F>0,C>0,C2 is C-1,display(X),display(' '),mostraSudoku(RX,R,F,C2).

%Sudoku de prova: [0,3,0,0,0,10,0,0,0,0,6,0,0,0,0,5,0,5,0,0,0,0,0,9,8,3,0,8,0,0,0,6,3,0,2,0,0,0,0,
5,0,0,0,0,9,0,3,8,0,0,0,6,0,7,1,4,0,0,0,0,0,9,0,2,0,0,0,0,8,0,0,0,0,0,4,0,0,0,3,
0]
%Sudoku fàcil de prova: [8,3,2,5,9,1,6,7,4,4,9,6,3,8,7,2,5,1,5,7,1,2,6,4,9,8,3,1,8,5,7,4,6,3,9,2,2,6,7,9
,5,3,4,1,8,9,4,3,8,1,2,7,6,5,7,1,4,6,3,8,5,2,9,3,2,9,1,7,5,8,4,6,6,5,8,4,2,9,1,3
,7]
% [8,3,2,5,9,1,6,0,0,4,9,6,3,8,7,2,5,0,5,7,1,2,0,0,0,8,3,1,8,0,7,4,6,0,0,2,2,6,7,9
,5,3,4,1,8,9,4,3,0,1,2,7,6,0,0,0,4,6,3,8,5,0,9,3,2,9,1,7,5,0,4,6,6,5,8,4,2,9,1,3
,7]

invertir(L,LI):-invertir(L,[],LI).
invertir([],L,L).
invertir([X|RX],L,LI):-invertir(RX,[X|L],LI).

appll(L,LF):-appll(L,[],LF).
appll([A|C],LA,LF):-append(LA,A,Z),appll(C,Z,LF).
appll([],LA,LA).

files([],_,[]).
files(LI,N,[X|Y]):-ll(LI,N,X,RX),files(RX,N,Y).
ll([LI|RF],1,[LI],RF).
ll([LI|RLI],N,[LI|RF],RL):-C is N-1,ll(RLI,C,RF,RL).

columnes([],[],[]).
columnes(A,N,L):-creallistes(A,N,A2),col(A2,L).
col([A,A2|B],L):-afegirelements(A,A2,A3),col2(A3,B,L).
col2(A3,[B1|RB],L):-afegirelements(A3,B1,C),col2(C,RB,L).
col2(RES,[],RES).
afegirelements([X|RX],[Y|RY],[CY|RCY]):-append(X,Y,CY),afegirelements(RX,RY,RCY).
afegirelements([],[],[]).
creallistes([],_,[]).
creallistes(LI,N,[L|RL]):-ll(LI,N,Z,X),creasubllistes(Z,N,L),creallistes(X,N,RL).
creasubllistes(_,0,[]).
creasubllistes(LI,N,[X|Y]):-C is N-1,creasub2(LI,X,RX),creasubllistes(RX,C,Y).
creasub2([LI|RE],[LI],RE).

reg(LI,N,LF):-regions(LI,N,Z),col(Z,P),creasubreg(P,N,L),cridaappend(L,Q),aplana(Q,LF).
creasubreg([],_,[]).
creasubreg([X|Y],N,[Z|T]):-files(X,N,Z),creasubreg(Y,N,T).
regions([],_,[]).
regions(LI,N,[Z|Y]):-ll(LI,N,X,RX),sqrt(N,ARREL),files(X,ARREL,Z),regions(RX,N,Y).
cridaappend([],[]).
cridaappend([X,Y|T],[Z|F]):-append(X,Y,Z),cridaappend(T,F).
aplana([X],X).


Maybe you'll nedd to translate predicate names from spanish to english, also some of the predicates are in Catalan... sry ^^



Notice from miCRoSCoPiC^eaRthLinG:
When you publish such large blocks of code, make sure you include them between CODE or CODEBOX tags. Failure to do so will cause your credits to be adjusted - which means you might loose all the credits for such a post.

Secondly - such a code is quite useless, unless you clearly explain at each step - what exactly is happening. That is a MUST for posts like this - coz without such explanations, again, the code alone is quite useless. It's like leaving others groping in the dark trying to figure it all by themselves - specially for newbies.

Since, you're new to this board, you'll get off without a warning this time. But our credits system is heavily dependent on proper usage of the BBCode tags. Hence, I'm forced to adjust the credits - Reducing Hosting credits worth 18 days.

 

 

 


Reply

Monbasstic
Hi Anduril

I try to undestand what are you doing with the predicate "cridaappend"
It is involved inside the calcul of the regions

reg(LI,N,LF):-regions(LI,N,Z),col(Z,P),creasubreg(P,N,L),cridaappend(L,Q),aplana(Q,LF).

I have noted tha cridaappend works fine when is called whit a even number of elements
into L ...

% ?-cridaappend([[[1,2],[3,4]], [[5,6],[7,8]] ],Q)
% Q = [[[1, 2], [3, 4], [5, 6], [7, 8]]]
% ?-cridaappend([[[11,12],[13,14],[15,16]], [[21,22],[23,24]] ],Q)
% Q = [[[11, 12], [13, 14], [15, 16], [21, 22], [23, 24]]]
% ?-cridaappend([ [1],[2],[3],[4],[5],[6] ],Q)
% Q = [[1, 2], [3, 4], [5, 6]]
% ?-cridaappend([ [11,12],[21,22],[31,32],[41,42],[51,52],[61,62] ],Q)
% Q = [[11, 12, 21, 22], [31, 32, 41, 42], [51, 52, 61, 62]]

but, it fails when L is a list with a odd number of elements
% ?-cridaappend([ [1],[2],[3],[4],[5]],Q)
% Failure

also, the list returned by the previous procedure "creasubreg(P,N,L)" gives in L
a odd number of elements like (for example)..
L = [ [ [11, 12, 13, 21, 22, 23, 31, 32, 33],
[41, 42, 43, 51, 52, 53, 61, 62, 63],
[71, 72, 73, 81, 82, 83, 91, 92, 93] ],
[ [14, 15, 16, 24, 25, 26, 34, 35, 36],
[44, 45, 46, 54, 55, 56, 64, 65, 66],
[74, 75, 76, 84, 85, 86, 94, 95, 96] ],
[ [17, 18, 19, 27, 28, 29, 37, 38, 39],
[47, 48, 49, 57, 58, 59, 67, 68, 69],
[77, 78, 79, 87, 88, 89, 97, 98, 99] ] ]

Then, when we call latter "cridaappend", the algoritm fails.

Can you explain me how you implements the predicate "append" , i supose
it is implemented as:
append([],L,L).
append([X|L1],L2,[X|L12]):-
append(L1,L2,L12).

thanks in advance
Mon


 

 

 


Reply


Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.
Confirm Code:

Recent Queries:-
  1. prolog sudoku - 4.88 hr back. (1)
  2. hearts in prolog - 14.43 hr back. (1)
  3. prolog games - 30.16 hr back. (1)
  4. prolog video games - 53.31 hr back. (1)
  5. sudoku source prolog code - 63.99 hr back. (1)
  6. l game en prolog - 76.24 hr back. (1)
  7. board games in prolog - 77.28 hr back. (1)
  8. torncity in spanish game - 80.60 hr back. (2)
  9. games using prolog - 84.86 hr back. (1)
  10. sudoku prolog - 1.07 hr back. (5)
  11. prolog game programming - 110.14 hr back. (1)
  12. prolog game - 12.75 hr back. (3)
  13. sudoku con prolog - 71.98 hr back. (2)
  14. sudoku en prolog - 162.85 hr back. (1)
Similar Topics

Keywords : game, programming, prolog, ia, gaming, sudoku

  1. Grid-iron - Management Game
    (0)
  2. Wow Game
    (1)
    Greetings! Introduction I represent MTVault.com I want to take a little of your time to
    introduce our company and what we can offer to MMO players. We are a newly formed organisation with
    members having worked in this field of business for many prior years. We currently specialise in 3
    major MMO games (WoW, AoC, EVE) and aim to deliver every customer’s purchase upto satisfactory needs
    with competitive prices, speedy delivery, and great customer service. Our services Gold/Currency
    and distributed on: -World Of Warcraft US + EU -Age Of Conan US + EU -EVE Online ....
  3. Looking For Coder To My Web Game
    (0)
    Hi My web browser game is almost done its only the layout/theme left What we are looking for is
    another coder so everythign will run smoother and go better right now we have 1 coder,but we want 1
    more Its a huge game to say its allways something for the players to upgrade or build They can
    research new stuff such as building and other they can build different building to make what they
    want,and after they have build their buildings they can also upgrade them to either get more off
    something or the stuff the building creates,creates faster and so on There is a few bu....
  4. What Is Your Favorite First Person Shooter Game?
    (0)
    I know, a very generic question, however I am very curious to see. Also, please say if the game is
    Vista Compatible or not. Since Vista is relatively new, there are many decent FPS games that are not
    even able to run on Vista! I would have to say mine would be Half Life 2: Episode 2. Anyone
    know more information about Episode 3 as well?....
  5. Free Action Game Online
    (0)
    free action games : Play Free Online Games, sports games, massive multiplayer
    games, action games, puzzle games, flash games and more, casual games
    http://www.miniclip.com/games/en/action.php ....
  6. What You Need Before You Can Create A Text-based Game..
    Using PHP, HTML and MySQL (7)
    Please comment and rate, after you finished reading! /smile.gif"
    style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" />
    ################################################################# Change log: Aug 22 2008: The
    Tutorial Was Created. V1.0.0 Aug 30 2008: Added XHTML and a small CSS part. Also corrected some
    small things and added this change log. V2.0.0
    ################################################################# OK.. Many people here want to
    create text based games. Many of you ask us here on the forums: "how to create a text-based ....
  7. Making Educational Game
    3d game, like walking in country (3)
    Please, i would like to make a progra/game like walking in a country, visiting houses. Specially
    church is in my mind. with some music(in church religious)..... or, but its not so important -
    meeting people and talking with them. I cant say, but something between RPG and adventure, maybe
    with some small missions like finding cross, or old pergamen.... but in 3D. Maybe i can download
    some 3d models from net, so 3d modeling is not required for this tool. Just engine - with physics,
    colisions detect, maybe water effect, but not so important, then i need no so many programmi....
  8. Game'istaan - Game Development Contest @ Niit
    (2)
    EDIT: Screenshots of the new Release Here goes the link:
    http://maxotek.net/scripts/php-ajax/winExp...omber%20Man.zip A game development contest named,
    Game'istaan started on the 5th of this month at NIIT, India. Each of the teams (max 3 students
    per team) need to submit their entries by the 4th of september. The coding can be done in C++, J2ME,
    FLASH or C#. I went for C# which was not among the list, initially. It was introduced because very
    few (just us in our zone) opted for C++. The game I am developing is 'Bomber Man'.
    Currently, the game ....
  9. Xml Needed?
    Is XML required for a text based game? (4)
    As the description says. Is XML required when making a text based game or is it not needed at all?....
  10. Novalogic Games
    Which game is the best in your opinion (1)
    Hey i was just wondering if anyone here has played on any of the games.. and if they have, which one
    would you consider to be the best.. this isnt just the graphics because the older games dont have
    good graphics anymore.. so include which one you enjoyed most! Also, there is the new game
    coming out soon called Delta Force: Angel Falls and i was wondering which of you would be playing
    that in the future. For me personally it was Land Warrior and it just keeps bringing me back even
    if it is a good 8 years old now....
  11. Halo 3
    The best game out there next to gearsofwars (3)
    Recently ive benn playing halo 3 on x box live my gamer tag on x box live is SoilderBROSKI well
    anyways when i started playing this i thought it was dum but then after playing it online for like a
    week i got realy realy good i became luitenent Srry if i didnt spell that right. anyways i got realy
    good at using the sniper and the shoygun as a combo i sniped three guys with 1 shot how many pepole
    can say they have ive goten over kills triple kills and double kills like nothing anyways i wanan
    know your opinion on halo 3 ty.....
  12. Torn City
    A very big Text Based Game (9)
    I have been playing Torn City for over a half a year. But the game is HUGE! theers are around 25
    thousand people playing that game. It has alot of stuff to do. visit Torn City Im a player but i
    really like it.You can make factions, companies, buy houses,kill people, and buy guns there is a
    HUGE varity of guns in that game. its a game were you find new stuff to do every day.. just dont
    like waiting lol. but its how it is. Im looking forward to making a game like this!!
    /smile.gif" style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" />....
  13. Slavehack
    An Online Hacker pwnage game (12)
    Hey someone might have posted this before but I wanted to say...Slavehack (www.slavehack.com) is a
    really awesome game. Its a browser based online virtual haxxoring game. QUOTE What is Slave
    hack ? Slave Hack is an online hacking simulation game, Slave Hack is NOT related to any real
    hacking ! All in-game is virtual, everything is made up..like the IP ranges, software, warez
    etc. Ok I'm not afraid anymore..so tell me about the features? To start with the best: SH is a
    free game, you never need to show your credit card. You start SH with a very old (133Mhz,....
  14. Battle Dawn
    Online game review (2)
    Review of Battle Dawn Hi guys, last week I started playing a game called Battle Dawn. It’s
    an online strategy game. You play on a map of the world, when you start you can build your colony
    anywhere on earth. I built mine right over my home town of Nelspruit. The topography of the game is
    very good; it’s got all the lakes, mountains and desserts of the real world! There are 4
    resources in the game. Metals, oil, food and energy. Metals and oil are used to build things, food
    is used to feed your colony and increase its population and energy is used to perform....
  15. Gba Game Program
    (5)
    Just woundering if anyone appart from me has even tried to create games for the gba
    And if so... were you... A: successful or any good at it... B: what type
    of scripting did you use... I use HAM and VHAM (Click here to go to the Home page)
    (sorry about the colour just had to try it... /tongue.gif" style="vertical-align:middle" emoid=":P"
    border="0" alt="tongue.gif" />)....
  16. Entropia Universe
    The most expensive 'game' on Earth! (8)
    Entropia Universe, the most expensive 'game' on the planet... QUOTE The Entropia
    Universe is more than a game. The Entropia Universe is for real. Real people, real activities and a
    Real Cash Economy in a massive online universe. From EntropiaUniverse.com Yes...Entropia
    Universe, the game in which someone paid $100,000 for a virtual space station (for news article
    click here ). I got sucked in for the first time about 6 months ago, it was called 'Project
    Entropia' then. With the allure of making REAL MONEY in a game...Entropia Universe has....
  17. Please Recommend A Decently Priced & Good FPS Game
    (36)
    anyone know a cool game that I can buy for a reasonable price and is a good game I will play a lot
    becasue know im just really bored... Can you please help me?....
  18. Need For Speed Most Wanted!
    The best game! (19)
    I bought this game and I just love it! I have a Driving wheel do it doubles your fun! the
    police makes it a lot cooler and the graphic are just WOW!!!!! It would be a lot
    cooler if they would have a lot of shops lik ein underground 2.... But except that is a great
    game! I myself have the blacklist edition and its a lot cooler becasue you have a list of people
    you have to beat and if you beat all of tehm you win.......
  19. Help Me Create A Text-based, Turn-based Game
    Similar to X-kings, Inselkampf, Ogame, Travian,etc.. (10)
    Can anyone help me create a game similar to the ones mentioned above? It isn't intended to have
    lots of graphics, but maybe a few... Any response will be much appreciated.....
  20. New Game: Sudoku
    (17)
    There is a NEW game in town. Its SUDOKU. This game is about patience and strategy. Everyone all ages
    can play this game as it is considered a universal game without language barriers. ....
  21. Man Dies From Playing World Of Warcraft
    Gaming? Harmful? (133)
    I was reading the paper today about a man in South Korea who went on a 50 hour binge playing World
    of Warcraft and died of heart failure, caused by dehydration and starvation. Can video games become
    so engrossing that it numbs all effects such as hunger, thirst, or pain? It's hard to believe
    that he would not grab something to eat after playing for a little over 2 days straight. The
    article said that this kind of thing happens all the time in South Korea, not to the extreme of
    dying though. South Korea's connectivity to the world is very high, very close to t....
  22. Freelancer: The Forgotten Game
    (9)
    Any one remember this game? It's been over 4 years since this game has been released, but i
    still haven't found a single game that measures up in comparision. for the uninitiated -
    here's the history Freelancer was a massive project started by microsoft way back in 1998, when
    they decided to make the ultimate space fighter game. it was supposed to be realsed in 2000, but got
    delayed, and was released in 2002-03 (don't remember) The game is completely perfect - never
    seen a game like it before. it had awesome graphics, superb gameplay, and immersive sound....
  23. Runuo Programming
    (4)
    there is someone that know programming on runuo and ultima online? I was trying to make so that he
    could himself be created account through web but the script that I have for the game server (that he
    update the account stored in database and synchronize them with the database) gives an error to me:
    ( if someone is even than it helps me, it says to me that it does not find the data origin (i think
    the database that i specified) given that I have specified: ( perhaps mistake driver -. -....
  24. Wuts A Good Game Maker Program?
    (12)
    whats a good game maker program where i can add them to my site?....
  25. The Best Strategy Game
    old strategy (29)
    hey i buying an old strategy game soo plz help mee to the best the best the best old strategy game .
    post your favourite and why thx for helping mee /smile.gif' border='0'
    style='vertical-align:middle' alt='smile.gif' /> ....
  26. Make Your Own FPS Game
    (32)
    i happend to be searching the internet, as i usually am doing from 5-9 on a daily basis...and i came
    accross this advertisement that sparked my intuitive imaginiation (wow big words...what do they mean
    ?) ne ways...heres what the ad said... First Person Shooters are one of the most enduringly
    popular game genres. Now, for the first time, anyone can make their own action packed FPS games
    without any programming or 3D modelling knowledge. Bringing a new benchmark to game creation, the
    innovative and multi-featured FPS Creator has been three years in development and off....
  27. Online Multiplayer Game
    What language to learn in order make it? (16)
    If you look at e.g. THIS LINK What language would you use to make something like that?
    /wink.gif' border='0' style='vertical-align:middle' alt='wink.gif' /> ....
  28. Creating A Game In Rpg Maker 2000/2003
    Part 1 - New Game and the Database (18)
    Creating a game in RPG Maker 2000/2003 Part 1 (I AM ONLY GOING TO TEACH YOU HOW TO MAKE AN
    RPG GAME IN THIS TUTORIAL!) First of all, you need to find some resources. When I say
    resources, I mean Character Sets, Chip Sets, Music, Backdrops, and Enemies. (Also others) The
    perfect place to find thoses would be at one of these great websites: www.gamingw.net
    www.phylomortis.com But, before you save them, you need to create a new game. Once you click on
    "New Project", this screen will pop up. The Directory Name is simply the name of the folder that
    it will....
  29. Best Snes Game?
    (25)
    What do you think is the best SNES game of all time???....
  30. How To Make A Text Based Online Game Script ?
    (23)
    Does anyone know if there is a easy was to make a text base online game, Like a free templet, or if
    anyone know how to make one and can help me.....

    1. Looking for game, programming, prolog, ia, gaming, sudoku

Searching Video's for game, programming, prolog, ia, gaming, sudoku
advertisement




Game Programming With Prolog: Ia Gaming (sudoku)



 

 

 

 

ADD REPLY / Got an Opinion! a humble request :-) RAPID SEARCH! Free Hosting [X]
Express your Opinions, Thoughts or Contribute more info. to help others.
Ask your Doubts & Queries to get answers, So that "Together We can help others!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE