Jump to content
MakeWebGames

Samurai Legend

Members
  • Posts

    483
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by Samurai Legend

  1. I can help you out. Do you have Skype? It's minor adjustment to the system. Problem is if you clear the data base for battle tent challenges. You want it kept recorded so people know they defeated them. However there is various of ways of overcoming this problem. Here is my way There's an option in the staff panel if users can challenge the NPC again. This will just add one field to the table. Make something that shows the NPCs you attack. How many times, and if your allowed to hit it again.
  2. It may look like the template. But it is not. What if it inspired him to make something like that? Some of my work is someone who inspired me. Nothing wrong with that? At the end of the day he did not copy and paste. He made it his self.
  3.   Someone who understands! I feel to give you a hug.
  4. It looks great! Omfg I love it! I would have bought this. But I have no money. - - - Updated - - - Or your not selling this...
  5. It worked before?
  6. This made my MacBook freeze :/
  7. How can we trust you? Any hidden fee's?
  8. Mail me on Samurai Assault, I can help you out.
  9. Thanks for this Kyle! And I can't wait for your registration modification!
  10. Haha...........
  11. Waterboy Forrest Gump 22 Jump Street (Watched it today!) Black Knight The Goonies
  12. Thank you! I nearly downloaded it! I got it sent to my gmail.
  13. I agree....!
  14. It is dodgy. I mean come on? Someone just selling enignes for £10
  15. Then again, it's something...
  16. Yes sure did! Wanted to smoke 1 blunt turned out I got 6 other blunts for free! Have you ever just gave up on something because you wasn't bothered...
  17. Yes, I got the idea from Chaotic Wars :D Lowered to $5.
  18. Dragon Modification - Buy a dragon. Train it. Strength, Defence and Speed Fight other dragons. Take it to battle. Attack Log. Dragon List.   Attack System - Something that looks nice. Ajax or jQuery. Can use fist to fight. Or use equipment - Dragon, Shield, Armour, Primary and Secondary Weapon. One click attack system. Hospitalise, leave or mug the user.   Clan - I have no idea but I want someone who can come up with a good idea!
  19. I need a better Clan modification, so it's gang. However I don't want the default MCCodes one. I want something better and fun. I also want a one click attack system and much better than the default MCCodes one. Also integrated with a modification I made...So people can bring the dragons to fight. Just like a dog coming into a fight... My donation system fixed... I think that's it...
  20. Hello all, I need someone to help me out and trust me. I am looking for a coder. A coder to code few things. But the problem is I have no money. But when my game is released and I make money. (In'sha'allah/If Gods Willing, sorry to people who do not believe in God) I will give 30% of the monthly games cut for 2 months...Or $100 if I make that much within 2 months.   If your interested please mail me!
  21. I actually love it! Looks great! +1
  22. Yes I am. However I think that is very in-secure as its my first :(
  23. Here's a copy of my BBCodes Engine... <?php class bbcode { function bbcode_parse($text) { global $ir, $db, $userid, $set; $text = htmlspecialchars($text); // Following removed due to security issues regarding session hijacking // $text = preg_replace("/\[img=(.+?)\]/", "<img src='$1' alt='Broken or invalid image' />", $text); // $text = preg_replace("/\[img\](.+?)\[\/img\]/", "<img src='$1' alt='Broken or invalid image' />", $text); // $text = preg_replace("/\[email=(.+?)\](.+?)\[\/email\]/", "<a href='mailto:$1'>$2</a>", $text); // $text = preg_replace("/\[email\](.+?)\[\/email\]/", "<a href='mailto:$1'>$1</a>", $text); // $text = preg_replace("/\[url=(.+?)\](.+?)\[\/url\]/", "<a href='$1'>$2</a>", $text); // End $text = preg_replace("/\[b\]/", "<strong>", $text); $text = preg_replace("/\[\/b\]/", "</strong>", $text); $text = preg_replace("/\[i\]/", "<em>", $text); $text = preg_replace("/\[\/i\]/", "</em>", $text); $text = preg_replace("/\[u\]/", "<span style='text-decoration:underline;'>", $text); $text = preg_replace("/\[\/u\]/", "</span>", $text); $text = preg_replace("/\[s\]/", "<s>", $text); $text = preg_replace("/\[\/s\]/", "</s>", $text); $text = preg_replace("/\[sub\](.+?)\[\/sub\]/", "<sub>$1</sub>", $text); $text = preg_replace("/\[sup\](.+?)\[\/sup\]/", "<sup>$1</sup>", $text); $text = preg_replace("/\[big\](.+?)\[\/big\]/", "<big>$1</big>", $text); $text = preg_replace("/\[small\](.+?)\[\/small\]/", "<small>$1</small>", $text); $text = preg_replace("/\[list\](.+?)\[\/list\]/", "<ul>$1</ul>", $text); $text = preg_replace("/\[olist\](.+?)\[\/olist\]/", "<ol>$1</ol>", $text); $text = preg_replace("/\[li\](.+?)\[\/li\]/", "<li>$1</li>", $text); $text = preg_replace("/\[font=(.+?)\](.+?)\[\/font\]/", "<span style='font-family:$1'>$2</span>", $text); $text = preg_replace("/\[size=(.+?)\](.+?)\[\/size\]/", "<font size='$1'>$2</font>", $text); $text = preg_replace("/\[img[=]?(left|right)?\](([^<> \n]+?)\.(gif|jpg|jpeg|png|bmp))\[\/img\]/i", '<img class="mainimage" src="\\2" border="0" align="\\1" max-width: 5px alt="">', $text); $text = preg_replace("/\n/", "&nbrlb;", $text); $text = preg_replace("/\[left\](.+?)\[\/left\]/", "<div style='text-align: left;'>$1</div>", $text); $text = preg_replace("/\[center\](.+?)\[\/center\]/", "<div style='text-align: center;'>$1</div>", $text); $text = preg_replace("/\[right\](.+?)\[\/right\]/", "<div style='text-align: right;'>$1</div>", $text); $text = preg_replace("/\[quote name='(.+?)\'](.+?)\[\/quote\]/", "<div class='quotetop'>Quote($1)</div><div class='quotemain'>$2</div>", $text); $text = preg_replace("/\[quote\](.+?)\[\/quote\]/", "<div class='quotetop'>Quote</div><div class='quotemain'>$1</div>", $text); $text = preg_replace("/\[style=(.+?)\](.+?)\[\/style\]/", "<div style='$1'>$2</div>", $text); $text = preg_replace("/\[quote\](.+?)\[\/quote\]/", "<div class='quotetop'>Quote</div><div class='quotemain'>$1</div>", $text); $text = preg_replace("/\[code\](.+?)\[\/code\]/", "<div class='codetop'>Code</div><div class='codemain'><code>$1</code></div>", $text); $text = preg_replace("/\[codebox\](.+?)\[\/codebox\]/", "<div class='codetop'>Code</div><div class='codemain'><code>$1</code></div>", $text); $text = preg_replace("/&nbrlb;/", "\n", $text); $text = preg_replace("/\[colour=(.+?)\]/", "<span style='color:$1;'>", $text); $text = preg_replace("/\[\/colour\]/", "</span>", $text); $text = preg_replace("/\[color=(.+?)\]/", "<span style='color:$1;'>", $text); $text = preg_replace("/\[\/color\]/", "</span>", $text); $text = preg_replace("/\[br \/]/", "", $text); $text = preg_replace("/\[br]/", "", $text); $text = preg_replace("/\[hr \/]/", "<hr />", $text); $text = preg_replace("/\[hr]/", "<hr />", $text); $text = preg_replace("/\[list\]/", "<ul>", $text); $text = preg_replace("/\[\/list\]/", "</ul>", $text); $text = preg_replace("/\[olist\]/", "<ol>", $text); $text = preg_replace("/\[\/olist\]/", "</ol>", $text); $text = preg_replace("/\[li\]/", "<li>", $text); $text = preg_replace("/\[\/li\]/", "</li>", $text); return $text; } } $bbc = new BBCode; ?> If anyone can help me make it better and secure that will be great! This is the first BBCode Engine I made.
×
×
  • Create New...