Jump to content
MakeWebGames

rulerofzu

Members
  • Posts

    2,464
  • Joined

  • Last visited

  • Days Won

    8

Everything posted by rulerofzu

  1. I stand with Joshua. Charge a small fee you have done your share of free stuff.
  2. @ Cj there would be a bit more to it than that. Breaking down what sniko has done. If you view someone's profile and then hit f5 it will only count once. Just adding a query to update would mean for every refresh it would add another. @ Blade. Notice the new mysql table there? :whistling:
  3. yeah sorry...its been a long day! what color do you get at the moment?
  4. You have time to run a game though. If you have $50 now. Then save up until you have $100 and pay someone a decent amount.
  5. You would need to change this bit $bgcolor=($_GET['bgcolor']) ? parse_bgcolor() : array(255,255,255);
  6. If you cannot afford to pay a decent amount for a coded template then learn how to do it yourself.
  7. To be honest if your posting here then you shouldnt touch a htaccess file. Go learn what it does I know a good site http://www.google.com
  8. This is the get the level code from Grpg (like most of Et's mods lol)   function Get_The_Level($exp) { $a=0; $end =0; for($x=1; ($end==0 && $x<100); $x++) { $a += floor($x+1500*pow(4, ($x/7))); if ($exp >= floor($a/4)){ } else { return $x; $end=1; } } }
  9. Here you go... http://www.w3schools.com/css/default.asp   Thats free to use and you can teach yourself how to spice up your website.
  10. Just add bbcode to your announcements
  11. That is the formula 168 = 7 days. Simple quicky n dirty way.   $query=mysql_query('select userid,laston from users where laston <= unix_timestamp()-60*60*168'); while($results=mysql_fetch_array($query)){ mysql_query('update users set job=0,jobrank=0 where userid='.$results['userid'].'');event_add($results['userid'], "You lost your job for not turning up for 7 days you lazy ass!"); }   Would do what you need and also send them an event so they know why just in case they do login and go wtf?!? You could always give them vacation days depending on the job they have. Higher the job the more days. So if the player knows they will not be online for 7 days then they can also set their player on vacation so they dont get sacked :D
  12. Checks inbox....nope nothing there. Good luck with your project anyway 8o
  13. 2500 for either of those designs is a bit steep! http://www.alternate-creations.com did zu. Thought id throw that in there seen as I said i would given the opportunity. Having been recently working with horizons it has much more scalability than base mccodes does. The way the engine has been designed so that it can use custom scripts specific to only the module that requires them and its overall structure is well worth the price tag in my opinion.
  14. Good luck. It takes talent to play a musical instrument and kudos to you. I have two cats, 3 kids a goldfish and the wife to look after. Im busier than all of ya (esp the goldfish you try taking it for walks!) 8o
  15. You dont really need to add another field to the users table. Check the laston field for the user which has the time they was last on the game. select userid,laston from users where laston <= unix_timestamp()-60*60*168   that will give you the results you need then update the users table making them lose their job. This could go in your day cron.
  16. No offence taken tbh my solution was for the novice. I do like you suggestion and Lord Dan's On Zu its decided what the item does after its been selected by the player and how they intend to use it. Means the item is not always restricted to one single pre-defined use. For example if you use item A it does this. However if you use item A but have in stock item B then it can do this if you have learnt the way to do so and so on.
  17. Id say shop around rather than use McCodes. Free engines. ezRPG ZapEngine Paid Engines. PHP horizons You wouldnt need to worry about having to pay someone or spend the time securing the codes.
  18. Seen as your learning then my advice would be to do it properly. Go read up on css. Then experiment. Move the css to an external css file. (google how if you do not know) Not only is it a better practise to have it in an external file but it also makes it easier to change. Look at using div rather than tables. Use positioning to layout everything you have much better control over the layout using css positioning than you ever will using tables. Style the form and button so that it fits your theme. Dont forget check your site in firefox, ie8, safari and chrome. Css is not processed the same by all of them so you need to work on getting your site to look the same on all browsers.
  19. Im with DjK Interested but not enough info. PM me everything :D
  20. I remember a post in the shoutbox with the same name kieranrobo. Perhaps someone using the same name.
  21. Didnt you post at streetsyndicate that you can hack it like a piece of shit? Could be a case of someone reading it and then hacking your game.   You will need to go through your game file by file and make sure each and every one is secure.
  22. Well seen as this is a paid for chat script then unless you know what your doing and can do this yourself then I doubt your going to get this for free. Mcc uses userid and username on the users table. This is where you would need to look with regards to intergration.
  23. I know a game that actually uses a delay and shows the loader for 5 secs just to slow down the gameplay. Kinda sucky thing to do and they denied it until I pulled the bit of code.
  24. Nice work
  25. Thats the main problem. Is that eventually what ever you use will be reversed and as soon as its done then ill will be made available. So your not looking at just paying out once but over and over again unless what you choose is covered for free upgrades.
×
×
  • Create New...