Jump to content
MakeWebGames

Cyanide

Members
  • Posts

    107
  • Joined

  • Last visited

    Never

Everything posted by Cyanide

  1. Re: Attack Script made by us one that works Hopefully.   my page won't open the image. anything i can do to help it? did you create the images and upload them to the images/attack directory?
  2. Re: Attack Script made by us one that works Hopefully.     This was taken from Jon's post and edited so that it has images...nice post Jon..   Add all of these to attack.php. $hit = Rand (70,75); switch ($hit) { case 70: $hitspot = 'Legs'; $img= 'images/attack/legs.jpg'; break; case 71: $hitspot = 'Arm'; $img= 'images/attack/arm.jpg'; break; case 72: $hitspot = 'Groin'; $img= 'images/attack/groin.jpg'; break; case 73: $hitspot = 'Torso'; $img= 'images/attack/torso.jpg'; break; case 74: $hitspot = 'Heart'; $img= 'images/attack/heart.jpg'; break; case 75: $hitspot = 'Head'; $img= 'images/attack/head.jpg'; } Then in all of your attack messages (like the one below) change Using your {$r1['itmname']} you hit {$odata['username']} doing $mydamage damage ({$odata['hp']})</font> \n"; to Using your {$r1['itmname']} you hit {$odata['username']} in the $hitspot doing $mydamage damage ({$odata['hp']})</font>[img=$img] \n";   Just doing my part :-) I have already rewritten all aspects of my attack script. See it at http://crimeandchaos.com
  3. Re: Phone Billing I have started using DaoPay on CrimeandChaos.com and I have to say I am pleased with the results. I raised the prices for pay by phone slightly, then I posted that the prices varry by country, and that the service was slightly more expensive than when using paypal because of the fees that I have to pay in order to accept payments by phone. My players have accepted the system and come to love it. Hope this helps out anyone who is looking for an alternate way to make cash on there games.
  4. Re: AdvertiseYourRPG.com Wouldnt let me edit the post above....so here it is...   About Us Welcome to Advertise Your RPG where we strive to offer the best rates on the web for targeted game advertising. Unlike other RPG advertising sites, we don't require a huge deposit to get your account started, and for a limited time, for every $10.00 you deposit, you will receive $5.00 credit FREE! If you spend $100 or more, you will receive DOUBLE the order! Advertisers Why advertise on AYRPG? Because we offer "Run of Network" ads starting at only $0.03 per click! We also offer a wide range of publishers which include game communities such as www.cronwerks.com, and top lists such as www.tbabtopgames.com Publishers Why publish ads from AYRPG? Because once you are approved as a publisher you have a chance to create endless amounts of funds for your own advertising needs! We even offer a referral program which earns you an additional 10% of your referrals earnings!
  5. Currently rewriting this post....will repost soon http://advertiseyourrpg.com
  6. Hello all, I have just opened my new game Crime & Chaos and would like to get some opinions on it. http://crimeandchaos.com
  7. Re: [V2] Reward the active. - Punish the inactive. Give the players an even letting them know where the money and crystals came from.....   $q=mysql_query("SELECT * FROM users WHERE daysinactive < 2"); while($r=mysql_fetch_array($q)) { mysql_query("INSERT INTO events VALUES('',{$r['userid']},unix_timestamp(),0,'You were credited whatever the hell you are crediting for being active yesterday!')",$c); mysql_query("UPDATE users SET new_events=new_events+1 WHERE userid={$r['userid']}"); print "Daily rewards credited for {$r['username']}. "; }   blah blah blah.....enjoy
  8. Re: [mccode v2] Player of the week... +1 without a doubt....i didnt really read over the code or anything, but i really like the idea, also, if you dont already have it in the query, use a timestamp to make sure the player that it selects is active, it would give extra incentive to be online and active. Just add this tp the query....   AND laston > unix_timestamp()-120*60
  9. Re: [mccode v2] choose your own banner, text color, mainmenu, background, layout! Been a while since I have posted here, but I do have to say this is nice lacey....I have my own version that changes the entire game skin at once, then an addon within it to change the background...check it out at http://suburban-assault.com btw....+1
  10. Re: [mccode v2] Strip Club Great edits to an old mod i wrote...I own an 18+ game so I'll def be using this...   For those who don't know Cyanide=Genocide=Cyanide
  11. Re: [showcase] Suburban Assault (Please Review) Thanks for the comments guys, I updated again a few days ago, added an ingame forum, photo albums, multiple item use function, lots of goodies, and yes, I made my own graphics, just trying to really get the game off of the ground, also trying to find the right difficulty setting so that users dont sail thru it.
  12. Re: [v1] Travel to User Location button on profiles [FREE] Ok, I posted something to be nice, and all that came from it is alot of criticism and 2 kids fighting.....admin or mod please delete thread.
  13. Re: [v1] Travel to User Location button on profiles [FREE] You can change the fee....its really simple...I have my monorail set at $5000 lol As for adding the donor only and cant access while in jail and hospital, nice add. Thanks.
  14. Re: [v1] Travel to User Location button on profiles [FREE] Thanks for converting...I was going to, but I'm still doing updates on SA. Glad you like the script.
  15. This is just something simple I threw together because a couple of my players requested it. Hope someone else can get some use out of it. What it does: Adds a link on a users profile that takes you to that users location, and redirects you back to said users profile. Still charges a fee, and blocks users from traveling to a city above their level. travelto.php <?php /*================================== Travel To User Location By Cyanide [url]http://suburban-assault.com[/url] [url]http://infintium.net[/url] This is FREE software. ===================================*/ session_start(); require "global_func.php"; if($_SESSION['loggedin']==0) { header("Location: login.php");exit; } $userid=$_SESSION['userid']; require "header.php"; $h = new headers; $h->startheaders(); include "mysql.php"; global $c; $is=mysql_query("SELECT u.*,us.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid WHERE u.userid=$userid",$c) or die(mysql_error()); $ir=mysql_fetch_array($is); check_level(); $fm=money_formatter($ir['money']); $cm=money_formatter($ir['crystals'],''); $lv=date('F j, Y, g:i a',$ir['laston']); $h->userdata($ir,$lv,$fm,$cm); $h->menuarea(); if($ir['money'] < 5000) { print "<center> <font color='red'>[b]ERROR:[/b]</font> You dont have enough money travel to this location. [url='viewuser.php?u={$_GET[']> Go Back[/url]"; $h->endpage(); exit(); } $ct=mysql_query("SELECT * FROM cities WHERE cityid='{$_GET['to']}'",$c) or die(mysql_error()); $to=mysql_fetch_array($ct); if($ir['level'] < $to['cityminlevel']) { print "<center> <font color='red'>[b]ERROR:[/b]</font> You cannot yet travel to this location. [url='viewuser.php?u={$_GET[']> Go Back[/url]"; $h->endpage(); exit(); } else { mysql_query("UPDATE users SET money=money-5000, location='{$_GET['to']}' WHERE userid=$userid",$c) or die(mysql_error()); print "<center>You have paid $5,000 and traveled to {$to['cityname']}. [url='viewuser.php?u={$_GET[']> Back to Users Profile[/url]"; $h->endpage(); exit(); } ?> Add this link where ever you want on viewuser.php: [url='travelto.php?to={$r['][Travel to Location][/url] :evil: Enjoy :evil:
  16. Re: New Unified Staff Panel w/ Staff Logs [v1] This mod has been put on hold to focus on building my new game http://road-rage.net
  17. Re: New Unified Staff Panel w/ Staff Logs [v1] layout of the new mod should be done tonight, then i'll post some screen shots....base price is looking to be around $100
  18. Re: New Unified Staff Panel w/ Staff Logs [v1] if you wanted to convert it to v2 it could be used with it....but v2 already has a nice staff panel, so that would be up to you
  19. Ok...I am working on a new style staff panel for MCcodes v1, so far I have functions for crimes, cars, gang, items, users, all logs, etc etc. I will post a screen shot after I get to that point in the design. Staff panel also comes with logging of every action in the panel. I am posting this early to see what people think, and what type of price agreement we can come to. Post what you think I should charge below.   - Cy
  20. Suburban Assault http://suburban-assault.com Suburban Assault is 25 days old with over 500 players and hundreds of mods. The content and gameplay is almost infinite. Also, someone please post a review of my game and give me some ideas of what it needs.
  21. I have just opening my new topgames list and I am currently offering $5.00 in free advertising with your first deposit. Check it out at http://infintium.net
  22. Re: Guess Who! Awesome mod....do you mind if I do a little tweaking and repost? Going to ad rewards and what not, let me know.
  23. Re: [Free] Maths Challenge Great Mod! I'll be using this most definitely.
  24. Re: Clean up cron Very nice, I'm def using this. Thanks for posting.
  25. Re: [mccode] Stats Market Great job on thinking outside the box. I probably wont be using this, but it is a very nice mod. Keep posting.
×
×
  • Create New...