Batch Programming - Music Banter Music Banter

Go Back   Music Banter > Community Center > The Lounge
Register Blogging Today's Posts
Welcome to Music Banter Forum! Make sure to register - it's free and very quick! You have to register before you can post and participate in our discussions with over 70,000 other registered members. After you create your free account, you will be able to customize many options, you will have the full access to over 1,100,000 posts.

Reply
 
Thread Tools Display Modes
Old 09-02-2009, 03:45 AM   #11 (permalink)
nothing
 
mr dave's Avatar
 
Join Date: Mar 2008
Location: everywhere
Posts: 4,315
Default

i don't remember that specific book but i do remember playing at least one of their books back in the day too. i wonder if publishers still put out crazy 'choose your own' adventure books...

HOLY CRAP new version in 3 weeks haha

Warlock of Firetop Mountain: Amazon.ca: Steve Jackson, Ian Livingstone: Books
__________________
i am the universe

Quote:
Originally Posted by bandteacher1 View Post
I type whicked fast,
mr dave is offline   Reply With Quote
Old 09-02-2009, 04:06 AM   #12 (permalink)
Juicious Maximus III
 
Guybrush's Avatar
 
Join Date: Nov 2008
Location: Scabb Island
Posts: 6,525
Default

Wow, what a strange coincidence! If they're republishing the others in the series, I guess I might just buy them. I find the games funny still :p
__________________
Something Completely Different
Guybrush is offline   Reply With Quote
Old 09-02-2009, 04:46 AM   #13 (permalink)
nothing
 
mr dave's Avatar
 
Join Date: Mar 2008
Location: everywhere
Posts: 4,315
Default

haha yeah it doesn't seem like something many others are doing anymore. i remember having some cool robin hood books like that too.

i even had some cool ninja adventure book that just ended. no climax no final battle. just you're at level 3 in the dungeon now and nothing. not even an advertisement for another book in the possible series. it was really cool until that point but so lame at the same time.
__________________
i am the universe

Quote:
Originally Posted by bandteacher1 View Post
I type whicked fast,
mr dave is offline   Reply With Quote
Old 09-02-2009, 06:13 AM   #14 (permalink)
Fish in the percolator!
 
Seltzer's Avatar
 
Join Date: Dec 2005
Location: Hobbit Land NZ
Posts: 2,870
Default

Wow that looks like an ambitious project! Text RPGs were a bit before my time (the Baldur's Gate series was the pinnacle of my childhood gaming) but I'd be keen to see the results if/when you're finished.
__________________
Seltzer is offline   Reply With Quote
Old 10-17-2012, 08:46 PM   #15 (permalink)
air quote
 
Engine's Avatar
 
Join Date: Jun 2009
Location: pollen & mold
Posts: 3,108
Default

I don't know if this is the right place to post a question I have, but I didn't want to start a new thread.
Can anyone tell me how to write php script that essentially does everything that the MB polls do? Display voting options, then retrieve and display results?
__________________
Like an arrow,
I was only passing through.
Engine is offline   Reply With Quote
Old 10-17-2012, 11:43 PM   #16 (permalink)
Juicious Maximus III
 
Guybrush's Avatar
 
Join Date: Nov 2008
Location: Scabb Island
Posts: 6,525
Default

Quote:
Originally Posted by Engine View Post
I don't know if this is the right place to post a question I have, but I didn't want to start a new thread.
Can anyone tell me how to write php script that essentially does everything that the MB polls do? Display voting options, then retrieve and display results?
Perhaps you can find one on the net somewhere?

What's it for? Are you writing your own website from scratch using php?
__________________
Something Completely Different
Guybrush is offline   Reply With Quote
Old 10-18-2012, 12:19 AM   #17 (permalink)
air quote
 
Engine's Avatar
 
Join Date: Jun 2009
Location: pollen & mold
Posts: 3,108
Default

Quote:
Originally Posted by tore View Post
Perhaps you can find one on the net somewhere?

What's it for? Are you writing your own website from scratch using php?
I'm sure I can find examples of what I need in online tutorials and such but I thought to ask here because I'm sure it's a simple thing for some of you. I'm only semi-literate in php but I understand how it works.
I'm in a class learning to create a database and I'll use more than php for that. This php script I'm writing is just a preliminary exercise and I realized that the polls here are doing exactly what I need to make mine do. And they look more elegant than what I would come up with on my own.
__________________
Like an arrow,
I was only passing through.
Engine is offline   Reply With Quote
Old 10-19-2012, 12:12 AM   #18 (permalink)
air quote
 
Engine's Avatar
 
Join Date: Jun 2009
Location: pollen & mold
Posts: 3,108
Default

No help?
Freebase, I'm sorry I called you all those names and stuff.
I know you can write the code I want in 5 - 10 minutes. Be your best friend?
__________________
Like an arrow,
I was only passing through.
Engine is offline   Reply With Quote
Old 10-19-2012, 12:32 AM   #19 (permalink)
Juicious Maximus III
 
Guybrush's Avatar
 
Join Date: Nov 2008
Location: Scabb Island
Posts: 6,525
Default

Although I'm somewhat familiar with php, combining that with database stuff is something I've never done before so I'm not much help. I'd be interested in seeing the answer, though.

If you need a die roller in batch, I'm your man.
__________________
Something Completely Different
Guybrush is offline   Reply With Quote
Old 10-19-2012, 12:49 AM   #20 (permalink)
air quote
 
Engine's Avatar
 
Join Date: Jun 2009
Location: pollen & mold
Posts: 3,108
Default

Quote:
Originally Posted by tore View Post
Although I'm somewhat familiar with php, combining that with database stuff is something I've never done before so I'm not much help. I'd be interested in seeing the answer, though.

If you need a die roller in batch, I'm your man.
I've done that!

Quote:
<html>
<head>
<title>Roll the Dice</title>
</head>
<body>
<h1>Roll The Dice</h1>
<form action="dice.php" method="GET">
<p>How many dice?</p>
<input size="4" name="Number">
<input type="submit" value="Roll the dice!">
</form>
<?
$number_of_dice = $_GET['Number'];
if ($number_of_dice) {
$count = 0;
while ($count < $number_of_dice){
$dieroll=rand(1,6);
print "<p>$dieroll</p>";
$total=$total+$dieroll;
$count++;
}
print "Total = $total";
}
?>
</body>
</html>
If you want, I'll show you the voting app once I figure it out. But I assure you it will look like shit compared to an MB poll.
__________________
Like an arrow,
I was only passing through.
Engine is offline   Reply With Quote
Reply


Similar Threads



© 2003-2024 Advameg, Inc.