Search found 37 matches

by Tim
Tue Jun 03, 2014 2:10 am
Forum: Beginner Help and Support
Topic: Issue with .focus()
Replies: -1
Views: 350

Issue with .focus()

Hi all, It has been awhile since I've posted here. Been working on my game off and on. Working on the chat system right now ... got most of it working ... specifically working on the PM system. I'm attempting to implement a system where if the user presses the sequence of keys "//" (two fo...
by Tim
Mon Apr 23, 2012 6:01 am
Forum: Advanced Help and Support
Topic: Reload a page with a post variable ... how?
Replies: -1
Views: 725

Re: Reload a page with a post variable ... how?

Thanks for the info Jacko, you're always a great resource to bounce ideas off of! Do you think it would be unwise to convert my combat system to use GET instead of POST? The only thing I can think of that would be bad is if the user opened a bunch of tabs of mygame.com/combat.php?creature=Goblin (ex...
by Tim
Mon Apr 23, 2012 4:37 am
Forum: Advanced Help and Support
Topic: Reload a page with a post variable ... how?
Replies: -1
Views: 725

Reload a page with a post variable ... how?

Hey guys, Trying to get back into development on a new project. I am currently working on a combat system that uses the POST system to pass the creature from the form, and then execute the battle through a if(isset) on the same page. What I'm currently trying to do though is to reload the page every...
by Tim
Sun Sep 04, 2011 8:58 pm
Forum: Off-Topic
Topic: Beef Jerky
Replies: -1
Views: 429

Re: Beef Jerky

Jack Links <3
by Tim
Fri Aug 26, 2011 3:08 pm
Forum: Browser based RTS Videos
Topic: Timer
Replies: -1
Views: 2844

Re: Timer

by Tim
Thu Aug 25, 2011 5:40 pm
Forum: Advanced Help and Support
Topic: Location Question!
Replies: -1
Views: 459

Re: Location Question!

You could do an if statement on the page where the user has a choice to travel. if ($user_level > 5) { echo "click here to go to the noob map."; } if ($user_level > 10) { echo "click here to go to the intermediate map."; } if ($user_level > 15) { echo "click here to go to th...
by Tim
Wed Aug 24, 2011 6:06 pm
Forum: Browser based RTS Videos
Topic: Problems with my RANK PAGE
Replies: -1
Views: 4231

Re: Problems with my RANK PAGE

In your CSS your link colors are #FFFFFF (white), the same as your background. I don't think the link is invisible ... but the fact you can't see white on white ...

Also, to sort by population ...

Code: Select all

$rankinfo="SELECT * FROM players ORDER BY population";
by Tim
Wed Aug 17, 2011 5:28 pm
Forum: Older Browser MMO Videos
Topic: Need some help here![resolved]
Replies: -1
Views: 615

Re: Need some help here!

How can I make the fight system to not change creature when I press refresh button? I think if you keep watching the series, it will show you down the road. I'm not entirely what video since it has been some time since I watched them. Anyways, if you want the user to be able to select what creature...
by Tim
Wed Aug 17, 2011 1:35 am
Forum: Tutorials
Topic: [PHP][JavaScript][JSON][Ajax] Shoutbox
Replies: -1
Views: 1268

Re: [PHP][JavaScript][JSON][Ajax] Shoutbox

I'm REALLY sorry for digging up such an old topic ... but I have this working great in Firefox and Chrome, but it doesn't update in IE. Any ideas?
by Tim
Wed Aug 17, 2011 12:03 am
Forum: Older Browser MMO Videos
Topic: question abou attack
Replies: -1
Views: 1393

Re: question abou attack

$creature = $_POST['creature']; The $creature variable will carry the name of the creature, depending on what the user selects. User selects Goblin and hits submit, $creature = Goblin. User selects Orc and hits submit, $creature = Orc. This is when you query the database to get all the info about t...

Go to advanced search