Jump to content
MakeWebGames

SlanderDesign

Members
  • Posts

    106
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

SlanderDesign's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Why use htmlentitles when you're stripping the tags? Plus, Magic Quotes isn't used for GRPG, if it was then most of the mysql_query(); 's would error/double slash quotes :S :S
  2. Two points: 1. GRPG does not come with a forum by default... 2. Don't use the user made forums, the main reason I say this is look where it says $_POST['topicname'] $_POST['topicname'] appears around 13 times and needs securing.
  3. This really wont be a free mod if anyone does code it ;)
  4. That actually helped me :thumbsup: Thank you Regards Linton
  5. They are many colour name mods around this forum. also if you check the free plugin page for GRPG you will see a vote made by vasey ;) Regards Linton
  6. Everyone here has fair points but, if MCC do take Ravan to court then MCC will be given a hell of a lot of money...(MATHS: Ravan sold around 400 copies, 400 * $15 = $6000. instead of the Mc Code Price ($80000) .) So in court the payout should be around 80k. This would be enough to GIVE Ravan victims the money back OR GIVE them a free V1 licence. Yes I sound like it's all MCC's fault, it's not. But they have made it so our games no longer work. Coursing loss of earnings. Anyway kinda sick of ranting. Regards Linton ;)
  7. I also fell victim to the Ravan Script fraud, I do not want to seek legal advise as I see MCC taking it's own action against Ravan Script. What I would like is some sort of support from MCC. You should all know by now that Ravan Script will not work without their site been online. Thus we have all been shut down by MCC's action. We have all lost a great deal in time and money. My idea of a great fix is that anyone that paid for Ravan Script show MCC the payment id to them in paypal. (I cant seem to find my licence file for Ravan Script), MCC then give the ravan victims a FREE Mcc V1 licence. Regards Linton.
  8. It's suppose to be a user friendly mod.... Just saying... Anyway nice mod. Regards Linton
  9. nope, the "real" GRPG script comes with bugs + extra bugs... Voting script is easy, the colour names shouldn't be to hard. I'll make the voting for you soon :) Regards Linton
  10. if(preg_match("/<[^<]+?>/is",$_POST['bugREPORT'])){ echo 'Report cannot be submitted for the following reason(s): [b]HTML found[/b]!';   Why not just striptags(); , Saves people typing out the bug again....? Or I maybe wrong :S
  11. XD this is from my complaints mod... Yeah no need for the mres ect, it did have text but it doesn't no more. Remove it if you want, but it's causing no errors. Regards Linton
  12. <?php include (DIRNAME(__FILE__) . '/header.php');   echo '<tr><td class="contenthead">List Of All Complaints</td></tr> <tr><td class="contentcontent">';   $result = mysql_query("SELECT * FROM `grpgusers` WHERE ".$user_class->city." ORDER BY `exp` DESC LIMIT 5"); while($line = mysql_fetch_array($result, MYSQL_ASSOC)) { echo "<div>".mysql_real_escape_string(strip_tags($line['id'])).". ".mysql_real_escape_string(strip_tags($line['username']))."</div>"; } include (DIRNAME(__FILE__) . '/footer.php'); ?> this only works for the EXP not stat's. Regards Linton. PS: Sorry I forgot about making this for you!
  13. If your looking for a background image I would suggest using some CSS. and EG would be: in the css of your header or style.css add this at the bottom. .menuh{ background-image:url(images/menuhead.png); display:block; } .menuc{ background-image:url(images/menucenter.png); padding-top:10px; background-repeat: repeat-y; .menuf{ background-image:url(images/menufooter.png); display:block; } then on mainmenu.php add this under <?php: echo '<div class="menuh"></div> <div class="menuc">'; then at the bottom after Logout add this: <div class='menuf'></div> </div>"; Hope this helps :)
  14. Base_64(); I'm sure most servers/hosts ect will allow the use of that?
  15. A few tears? :S I would say around 6 months and he could be able to code... I would also suggest using The Generic RPG engine. It is less complicated and also shows how to use HTML and PHP together. *Closing one tag and opening another* EG: <table><?php echo 'hello'; ?> </table> Regards Linton
×
×
  • Create New...