Jump to content
MakeWebGames

Haunted Dawg

Members
  • Posts

    2,933
  • Joined

  • Last visited

    Never
  • Days Won

    1

Everything posted by Haunted Dawg

  1. I have for many month's now try to figure out why .change_opacity { opacity: 0.7; } would never work in internet explorer (IE) browser's until now. I did a simple google search and i found how to make opacity work in IE. .change_opacity { opacity: 0.7; filter: alpha(opacity = 70); } By adding filter: alpha(opacity = 70); it would work out the same as opacity: 0.7. While opacity work's from 1.0 (Completly visible) to 0.0 (Completly invisible) filter work's from 100 (Completly visible) to 0 (Completly invisible). Well. there u have opacity in IE browser's. Enjoy for those who never knew.
  2. Re: Query Optimization Well. Like i said. What is 0.000001 second going to harm. When opening a new query and fetching that just for user notepad. Yes i know i can remove staff note's which i will and signedup and duties. But the user notepad can stay there.
  3. Re: Big thanks to Killah Actualy he has been trying to slice image's for quite some time. All i did was explain what to do with the psd and he did it.
  4. Re: [Mccodes Version 2] Player Report he does not have the function clean()...
  5. Re: cron_fivemis Only thing concerning will is the will potion in the setting's table.
  6. Re: Query Optimization Gender image will be displayed on every page. display pic will also be displayed on every page.
  7. Re: Query Optimization Well. In the game it is calling out all of that. It would be useless to make a new query just to call that one specific thing on a different page.
  8. Re: Query Optimization Well that work's :).
  9. Re: [other] New Login + New Register And what are you offering here? are you offering us the layout? if no why post under game modification's when it supposed to be in game showcase.
  10. Re: Query Optimization HaHa. I accidently deleted exp_needed from the user's table. Unknown column 'exp_needed' in 'field list'   ----- Edit: It seems as if mccode's does not have exp_needed in the user's table.
  11. Re: [mccode v2] Gang Recruit event_add($_POST['rec'],'You have been recruited for '.$gangdata['gangNAME'].' gang, so go and send your app now!.');
  12. Hello i have been currently recoding my game and i came across the fetch from user's. Now i tried using this:   $is = mysql_query("SELECT exp,username,level,userid,exp_needed, maxwill,will,diamonds,money,hp,maxhp, energy,maxenergy,user_notepad,signature, laston,lastip,job,brave,maxbrave,location, user_level,gender,daysold,signedup,gang, daysingang,course,cdays,jobrank,donatordays, email,display_pic,duties,bankmoney,staffnotes, lastip_login,lastip_signup,crimexp,forum_avatar, forum_signature,new_announcements,force_logout,diamondbank, rating,lottery,steps_left,busts,bails FROM users WHERE userid=".$userid); $ir = mysql_fetch_assoc($is);   But it does not work. Bellow is my user table's row.   CREATE TABLE IF NOT EXISTS `users` ( `userid` int(11) NOT NULL auto_increment, `username` varchar(255) NOT NULL default '', `userpass` varchar(255) NOT NULL default '', `level` int(11) NOT NULL default '0', `exp` decimal(11,4) NOT NULL default '0.0000', `money` int(11) NOT NULL default '0', `diamonds` int(11) NOT NULL default '0', `laston` int(11) NOT NULL default '0', `lastip` varchar(255) NOT NULL default '', `job` int(11) NOT NULL default '0', `energy` int(11) NOT NULL default '0', `will` int(11) NOT NULL default '0', `maxwill` int(11) NOT NULL default '0', `brave` int(11) NOT NULL default '0', `maxbrave` int(11) NOT NULL default '0', `maxenergy` int(11) NOT NULL default '0', `hp` int(11) NOT NULL default '0', `maxhp` int(11) NOT NULL default '0', `lastrest_life` int(11) NOT NULL default '0', `lastrest_other` int(11) NOT NULL default '0', `location` int(11) NOT NULL default '0', `user_level` int(11) NOT NULL default '1', `gender` enum('Male','Female') NOT NULL default 'Male', `daysold` int(11) NOT NULL default '0', `signedup` int(11) NOT NULL default '0', `gang` int(11) NOT NULL default '0', `daysingang` int(11) NOT NULL default '0', `course` int(11) NOT NULL default '0', `cdays` int(11) NOT NULL default '0', `jobrank` int(11) NOT NULL default '0', `donatordays` int(11) NOT NULL default '0', `email` varchar(255) NOT NULL default '', `login_name` varchar(255) NOT NULL default '', `display_pic` text NOT NULL, `duties` varchar(255) NOT NULL default 'N/A', `bankmoney` int(11) NOT NULL default '0', `staffnotes` longtext NOT NULL, `lastip_login` varchar(255) NOT NULL default '127.0.0.1', `lastip_signup` varchar(255) NOT NULL default '127.0.0.1', `last_login` int(11) NOT NULL default '0', `crimexp` int(11) NOT NULL default '0', `posts` int(11) NOT NULL default '0', `forums_avatar` varchar(255) NOT NULL default '', `forums_signature` text NOT NULL, `new_announcements` int(11) NOT NULL default '0', `user_notepad` text NOT NULL, `force_logout` tinyint(4) NOT NULL default '0', `diamondbank` int(11) NOT NULL default '0', `rating` int(11) NOT NULL default '0', `signature` text NOT NULL, `steps_left` int(11) NOT NULL, `busts` int(11) NOT NULL default '0', `bails` int(11) NOT NULL default '0', PRIMARY KEY (`userid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=91 ;   Everything seem's to be going on rather nice i have taken away many thing's in the user's table and will be making a new table for it. But now with that i get this error:  
  13. Re: crystaltemple.php error V2 Re install your old setting's table.
  14. Re: jail and hospital All my idea's work :|
  15. Re: jail and hospital run this as a sql:  
  16. Re: How To Protect Your Game From Hackers? And adding mysql_real_escape_string() won't help if you just add it to the top of the page. :lol:
  17. Re: [mccode v2] Preferences HaHaHa I believe he is 19 i think*
  18. Re: Header.php problam [mccode v2] I thought it had something to do with the div tag's!
  19. Re: [Any Mccode] Disallow Username 2 Error's on your's. $banned = username => missing a ; if ($_POST['username'] = ['$banned']) => should be == and not = plus your missing the { & } since it is calling else after that. Mine will work way much better than your's.
  20. Re: [Any Mccode] Disallow Username xD. How low can people go.   $arrayed_names = array ( username1, username2, username3, username4, username5, username6, username7 ); if(in_array($_POST['username'], $arrayed_names)) { echo 'This name has been reserved or you are using a swear word in your name.'; exit; }
  21. Re: [mccode v2] Preferences I did not say 95% who play rpg. 5% of 100% is about the amount that play rpg's. Majority of the web proxies have an option ontop asking to allow certain thing's. Not all of them have JS. My statistic's could be incorrect and i assure it is. But it's a near fact that not many people disable JS as many of gamer's do not know what JAVASCRIPT, PHP, (X)HTML, CSS, MySQL, AJAX, etc. is. What i am trying to say is. You will hardly find people disabling javascript unless they know how to disable it and just want to play around as so many website's now a day's disable javascript. OR they find out that the website they go to alot is infact harmfull and just don't wan't window's poping up like crazy.
  22. Re: 3 Word Game OFF TOPIC: Page 44: long penis warmer... Dazza's secret homosexuality while Ben touches... while milking a... rubs her warm Page 45: gas out then licks her finger... ON TOPIC. and zero-affect also
  23. Re: [mccode v2] Preferences Do you think your hundred's of people on several yahoo account's and most of your people on msn is the only people that are in the internet world? Let's say there is about 2 million rpg player's. 1.4 million is kid's and don't know what they are doing when it come's to pc's. 200k of that 2 million use IE (IE Is very hard to find where to activate javascript and de activate it). the rest are adult's which also does not know that much about computer's and don't disable javascript. And it is so simple to do this. <script language="javascript"> alert("You hava javascript enabled."); </script> Or even.   <script language="javascript"> var tegra = window.open("test.php"); if(tegra) { alert("Javascript is currently activated."); } else { var pr = document.write("Javascript is currently disabled."); if(pr) { //Do nothing } else { </script>You do not have javascript enabled.<script language="javascript"> } } </script>   Do not ask if the above script will actualy work. As i do not even know javascript but it's a possible.
  24. Re: 3 Word Game OFF TOPIC: Why are you people thinking sexuality? On Topic: and then she
  25. Re: 3 Word Game stomach to let
×
×
  • Create New...