Page 1 of 1
Hello, I need your...
Posted: Tue May 01, 2007 11:29 am
by gaogier
Hello, I need your advice on something.
What would be the best way, to make somesomething that is mostly complete, I would say about 70% so we dont really want to change too much.
Here is the problem
say, you have, 150 fields added in a mysql database and they all need to be marked off as complete (its something for a game), all ID'ed and say, 140th field requires 10 fields to be marked off as complete, inorder for it to be complete.
How would the best way for this to be done?
Posted: Tue May 01, 2007 11:35 am
by John Cartwright
If I knew what "marked off as complete" meant, it'd be helpful
Posted: Tue May 01, 2007 12:22 pm
by gaogier
Well, this if for a game, and you in this game you have quests, and when you complete a quest (on this system you click iv completed this quest)
Im not to sure how its done, but i know it is
Posted: Tue May 01, 2007 6:26 pm
by aaronhall
You'll have to be far more descriptive.
Posted: Thu May 03, 2007 6:42 am
by gaogier
In this game there are quests that members can complete... But some quests require 1 or more quests to be completed before it can be done.
EXAMPLE:
Quest 3,5,1 MUST be completed before Quest 21 Can be Completed. How do i Do this?
Posted: Thu May 03, 2007 7:45 am
by d3ad1ysp0rk
Sounds like you had someone make you the game and now they're gone?
If so, there's NO way we'll be able to guide you through how to change it. You'll either need to pay someone to help you, get a hold of the other programmer you used, or ask very nicely in the volunteer forum.
Posted: Thu May 03, 2007 7:57 am
by Chris Corbyn
Post your table strucutre(s). Do you seriously have 150 fields in a table?
I think I know what you're asking and you you should be able to create table with users/questions then simply check for the existence of a row which matches the user id to the question ID.
Code: Select all
create table user_question_tracker (
id int not null auto_increment primary key,
question_id int,
user_id int,
foreign key(question_id) references question(id),
foreign key(user_id) references user(id)
)
Descriptive subjects
Posted: Thu May 03, 2007 2:54 pm
by RobertGonzalez
You were asked on Tuesday to
It is now Thursday and the title is still 'Hello, I need you...'. Any chance that you could maybe change the title to something that would make people want to help you?
Posted: Sat May 05, 2007 12:07 pm
by gaogier
what should i change it to?
its not me whos making it, so i am not 100% sure on whats the problem is, its somone who i know is making it.
Posted: Sat May 05, 2007 1:25 pm
by Zoxive
Line 457, char 9 theres an error.
Posted: Sat May 05, 2007 4:23 pm
by RobertGonzalez
gaogier wrote:what should i change it to?
its not me whos making it, so i am not 100% sure on whats the problem is, its somone who i know is making it.
Maybe look at exactly what you are asking, the make the thread title reflect that. But
Hello, I need your ... is painfully difficult to assess from a list of topic titles.