Jump to content
MakeWebGames

rulerofzu

Members
  • Posts

    2,464
  • Joined

  • Last visited

  • Days Won

    8

Everything posted by rulerofzu

  1. Contact the admins as I stated. The problem is due to the change in forum software so likely the download will need to be added again.
  2. Send a message to one of the moderators or admins.
  3. No problem. I think everyone was overthinking it :D
  4. Well in the header there is at line 135 in the header code to change the colour. Version 2.0.3 For your usersonline check the code itself. In v 2.0.3 there is no color stated so I would look at the css in the header file. As its a link then your looking at the a:active,a:visited for the color
  5. Your wishing to change the colour of the donators? So for example white if they are not a donator or green if they are.
  6. http://makewebgames.io/showthread.php/35995-Gang-Replacement
  7. http://cronw.sourceforge.net/ As for the items etc. Thats what your admin staff panel is used for :D
  8. Is there any time scale involved? IE person clicks on the page it gets set to -1 and has to wait 5 mins for it to reset after they leave that page? If there is no time restriction then I would not bother doing it like this at all. $_SESSION['mCLICK'] whilst on the page. Destroy the session when they leave.
  9. rulerofzu

    Image Upload

    I dont get why your against taking Alains advice. Using a pre-built gallery is the best option for you and probably for your uncle. 1. it will work 2. it will be quicker than waiting for you to learn how to do it. Making a bad job of it initially and then improving it. Get a pre built gallery. Install that. Your uncle will be happy. You get paid and then you can spend time trying to create your own.
  10. rulerofzu

    Image Upload

    LOL your getting paid to do something that you have no idea how to do. Well done. Who's your boss and does he pay well :D
  11. Your getting 271 just 271? Not 271,141 which is what that produces (tested). Run this $strength=270600; $bonus=0.2; if ($strength > 0) { $extra = ((($strength/100)*$bonus)+$strength); $newstr += $extra; echo number_format ($newstr); //Query to update the new strength should you wish to do so. } If you only get 271 instead of 271,141 then something is wrong elsewhere
  12. The way your going about it. If the player has no comments then it will throw that error as there is no userid in the table. So you should check if there is going to be any rows (mysql num rows) if it returns 0 then no need for a query or continue if there is. If your getting that error and there is content in the table then most likely the $r['userid'] is incorrect or not referenced.
  13. I bet if you echo $extra it will be correct :P if ($stat['strength_extra'] > 0) { $extra = ((($stat['strength']/100)*$stat['strength_extra'])+$stat['strength']); echo number_format ($extra); }
  14. $extra = ((($stat['strength']/100)*$stat['strength_extra'])+$stat['strength']); This will give you the result Initial strength = 270,600 Final strength with a bonus of 0.2 = 271,141
  15. It is working. You just need to style it to how your game looks.
  16. Chrome. Sorry didnt think to view it in other browsers. Yeah it checks out fine in FF.
  17. http://makewebgames.io/showthread.php/38448-Modified-viewuser-with-bbcode-profile-signature both code and php tags place a br tag for each new line into the code.
  18. Ive reposted the code if your using chrome and it shows br tags switch to FF or IE
  19. Removed for the reasons stated in the first post
  20. viewuser code has been fragged by the change in forum ill sort out the code and repost it
  21. When I click advanced in chrome I get a new page with a full featured editor.
  22. viewuser.php -> look for a post by myself which has sigs bbcode enabled. Comments should be pretty easy to addon staff_logs.php -> illusions posted a full log system buy that? staff_gangs.php - > its not an error its a default. Basically you dont use staff_gangs.php you use staff_gangs.php?action=dosomething or what ever the syntax is. forums.php -> id say your better with dayo's forum mod! gangs.php - > floydians gang system is much better than the default ever will be and its free :D
  23. Place your code above the last } so like this and give it a try.... item_remove($userid, $r['inv_itemid'], 1); } if($r['itmname'] == 'Weed') { mysql_query("UPDATE users SET brave=brave+10 WHERE userid=$userid",$c); print "You roll a fat blunt full of {$r['itmname']} and start to hit it. You feel a bit more focused."; } } $h->endpage();
  24. You can usually find me logged into a linux server programming using pico
  25. Wow .....well I must say that upon arrival at your website. I closed the tab without going any further. Now if this was circa Netscape Gold then yeah you could get away with your site looking like that. However its not so put some effort into your presentation.
×
×
  • Create New...