Vorlen
Members-
Posts
287 -
Joined
-
Last visited
Never
Content Type
Profiles
Forums
Events
Everything posted by Vorlen
-
Re: Emergency Broadcast System (Spam Thread) Why scientific words are so long, like... pneumonoultramicroscopicsilicovolcanoconiosis. :p
-
Re: 3 Word Game to what next?
-
Re: 3 Word Game she does indeed! :p
-
Re: Counting (nr game) 891: onamatopea is how you spell it, not onimatapea, so take it and go BOOM. (haha sorry, Definition of onamatopea is basically a word that reads as it sounds, BOOM, or SCREACH, are good examples) Word: serendipity
-
Re: Emergency Broadcast System (Spam Thread) New spammers you say? I, Scarlet, shall attempt to take upon myself the difficult task set before me. :P So, spam about what? :)
-
Re: Introductions Online alias - Vorlen (King Rowlane, Nephisto, KWolfe2005, but none of those are all to well known) Real Name - Kyle Wolfe Basically I'm a geek, and apparently a loser lmfao. Regardless, I played TC, then Borstal, then Boredest, then decided I wanted to learn to code, so August 7th last year I bought MC Code 1.0 and taught myself PHP. August 17th Narcotic Wars was released. I sold it to Lion when we had some interesting issues with some staff and my choices. I have since made a game called Kings And Pwns (www.kingsandpwns.com) which is pretty cool, but it looks like my attention wont be able to stay on it as long as I had hoped, so it's for sale :p I'm 17 years old, live in Ontario, Canada. I own a company called DreamBurst Studios (www.dreamburst.com) and a short while back I signed Kronow and Spellbyte and a friend named Gawdsend into the loop, we are the 4 co-owners. Anyways, just wanted to say hi, and spam my links xD :evil: Hope you guys have fun, and feel free to chat at me any time, I'm on alot :)
-
Re: I need some advice I second that, with NW when I hit about 1400 users I was shut down for 6 days for too much CPU Usage, mind you I had quite a few queried mods, so yeah. :P
-
Re: Seanybob's Arcade Mod Sweet, well honestly, if I was capable of buying it, I probably would, looks quite nice! :D Good job on it, I'll get back to you if I can afford it sometime :p
-
Re: Seanybob's Arcade Mod If I had the money I'd definitely like to grab at this mod, would keep my users happy, something EASIER than the game itself to play LMFAO. Regardless, are there any medieval flash games in there? If there are, how many of them? (course in 600 games, if you don't want to count, don't lol) Anywho, I'll consider buying this. What's the license on it, I buy it once I can use it on any game i make I assume. :)
-
Re: I need some advice Lunarpages is usually fairly good, if you make your game reallllllllly elaborate and it'll get you shut down, but I doubt that'll happen to you. Not bad for the price... :)
-
Re: [Lite] Bugget streets v1 All I did was convert it, it's pretty basic stuff, I'm sure since both versions are free, you can play all you like! :D Sorry if anyone thought I was taking credit for it, as $hot thought, so I am hoping to clarify this, I DID NOT create it, and DO NOT, take credit for it's creation. I DO take credit for the conversion, but regardless, that's not a difficult task :P
-
Re: V2.0 streets. I know it is... that's the point. Someone asked me to change it to V2, so I did, thanks but I'd rather not take insults for something I distinctly DO NOT want credit for... I never said I wrote this myself, and I don't intend to. I know who wrote it, I just changed it so that people with V2 can use it. :)
-
I took the code from v1 that we did in the "[lite]bugget streets" topic, and I did it for 2.0 <?php include "globals.php"; print "You are currently scavenging the streets "; if ($_GET['action'] != 'scavenge') { $turns=$ir['turns']; print "Holy smokes! You should scavenge for some serious shit dude. Maybe grab some money off the ground, or get some Experience... maybe even find a special item or two...? Start goin! You have {$turns} turns left for today and will be topped up to 100 at newday. "; print " "; } else { $steps=abs((int) $_POST['steps']); for($i=0;$i<$steps;$i++) { if ($ir['turns'] < 1) { print("You do NOT have enough steps to scavenge the streets any more. Come back at newday. "); }else { $chance = rand(1,15); $db->query("UPDATE users SET turns=turns-1 where userid=$userid",$c); if ($chance == 1) { $amnt=rand(50,200); if($ir['money'] > $amnt) { print "As you scavenge the streets you see a hobo; he asks you for \$$amnt and you tell him to piss off. Then he proceeds to smack the shit out of you. He takes the \$$amnt anyway. "; $db->query("UPDATE users SET money=money- {$amnt } where userid=$userid",$c); $ir['money']-=$amnt; } else { print "As you walk the streets you see a hobo he asks you for \$1 you tell him to piss off he smacks you over the head and looks in your wallet. Finding it almost empty he just runs off with it. "; $db->query("UPDATE users SET money=0 where userid=$userid",$c); $ir['money']=0; } } if ($chance == 2) { print "Nothing here. "; } if ($chance == 3) { $gained=rand(20,90)*$ir['level']; print "You found a bag of cash on the side walk you open it up and find [b] \$$gained[/b] was inside. "; $db->query("UPDATE users SET money=money+$gained where userid=$userid",$c); } if ($chance == 7) { print "You see a guy getting mugged, but you decide to keep walking. You don't want to be in his shoes anytime soon. "; } if ($chance == 4) { print "While exploring the streets you found some cash, but a hobo came quickly behind you and whacked you over the head. You lurch in suprise and the hobo takes the cash and runs off."; } if ($chance == 5) { $gain = rand(5,20); print "While searching the streets you found [b]$gain[/b] crystals."; $db->query("UPDATE users SET crystals=crystals+$gain where userid=$userid",$c); } if ($chance == 6) { $gain = rand(50,100)*(floor($ir['level']/2)+1); print "While searching the streets you found [b] \$$gain[/b]. "; $db->query("update users set money=money+$gain where userid=$userid",$c); } if ($chance == 8) { print "Nothing here. Just a few drunk bums. "; } if ($chance == 9) { print "You see a small item on the ground, and decide to pick it up... wonder what it is? (Hint, look in your inventory lol)"; $itemidexplore = 40; $db->query("INSERT INTO inventory VALUES('',$itemidexplore,$userid,1)",$c); print" "; } if ($chance == 10) { print "You see a syringe on the ground, and decide to pick it up. Looks deadly enough..."; $itemidexplore = 16; $db->query("INSERT INTO inventory VALUES('',$itemidexplore,$userid,1)",$c); print" "; } if ($chance == 11) { print "Nothing here. "; } if ($chance == 12) { print "Nothing here. "; } if ($chance == 13) { $expcur=(($ir['exp']+$ir['exp_needed'])/100); $exp=(($expcur)*rand(1,5)); print "You got in a scuffle with a bum, and WON you gained some EXP!! (Go have a look!) "; $db->query("UPDATE users SET exp=exp+$exp WHERE userid=$userid",$c); } if ($chance == 14) { print "Nothing here. "; } if ($chance == 15) { $hosptime=(int) rand(1,5); $loseruser = $ir['userid']; $reasonhosp = 'Stepped on a land mine while scavenging.'; $db->query("UPDATE users SET hospital=$hosptime WHERE userid=$loseruser",$c); $db->query("UPDATE users SET hospreason='$reasonhosp' WHERE userid=$loseruser",$c); event_add($ir['userid'],"You stepped on a land mine while exploring. Do be a bit more careful next time...",$c); die ("You stepped on a land mine. [b]Good news[/b]: You aren't dead [b]Bad News[/b]:You have to stop exploring and go into Recovery "); } $ir['turns']--; print"you have [b] {$ir['turns'] }[/b] steps left "; } } if($ir['turns']==0) { print "Sorry, all turns used! "; } else { print " "; } } $h->endpage; ?> } Let me know if anything's not working, it's free and all PS I did NOT charge SubGhetto, for those of you who're thinking "He charged him then flipped and posted it", Decided it wasn't really mine to sell. lol Updated: Run query alter table users add turns int(11) not null default 25; *Change the above default number to something you want it to be, So when users sign up they start with that amount of turns* Add to day cron $db->query("UPDATE users SET turns=25"); *Yet again, Change the above to your preference* *LostOne slaps vorlen with a trout for not adding the queries* :lol:
-
Re: [Lite] Bugget streets v1 Alrighty then, PM me when you get the chance, tell me your email that you use for MSN or such and I'll contact you. I'll convert the code asap and get it prepped for you. :)
-
Re: [Lite] Bugget streets v1 Genocide's right, it's an awesome mod to play with if you do the right stuff. :) Most gamers EXPECT a streets these days, kinda sucks as my game doesn't utilize the feature, maybe I'll use it and make it so that you have to use brave for it :p As for how much I'd sell it for, maybe like $10 lol, if you just want it converted then yeah round that I suppose eh :P
-
Re: [Lite] Bugget streets v1 Could probably convert it fairly easily, and sell it. Depends, what're you offering for it?? :P
-
Re: [Lite] Bugget streets v1 <?php 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']); $vm=money_formatter($ir['crystals'],''); $lv=date('F j, Y, g:i a',$ir['laston']); $h->userdata($ir,$lv,$fm,$vm); $h->menuarea(); print "[b]You are currently scavenging the streets[/b] "; if ($_GET['action'] != 'scavenge') { print "Holy smokes! You should scavenge for some serious shit dude. Maybe grab some money off the ground, or get some Experience... maybe even find a special item or two...? Start goin! You have {$ir['turns']} turns left for today and will be topped up to 100 at newday. "; print " <form method=post action=street.php?action=scavenge><input type=hidden name=action value=scavenge><input type='text' name='steps' value='{$ir['turns']}'> <input type=submit value='scavenge'></form>"; } else { $steps=abs((int) $_POST['steps']); for($i=0;$i<$steps;$i++) { if ($ir['turns'] < 1) { print("You do NOT have enough steps to scavenge the streets any more. Come back at newday. "); }else{ $chance = rand(1,15); mysql_query("update users set turns=turns-1 where userid=$userid",$c); if ($chance == 1) { $amnt=rand(50,200); if($ir['money'] > $amnt) { print "As you scavenge the streets you see a hobo; he asks you for \$$amnt and you tell him to piss off. Then he proceeds to smack the shit out of you. He takes the \$$amnt anyway. "; mysql_query("UPDATE users SET money=money-{$amnt} where userid=$userid",$c); $ir['money']-=$amnt; } else { print "As you walk the streets you see a hobo he asks you for 1$ you tell him to piss off he smacks you over the head and looks in your wallet. Finding it almost empty he just runs off with it. "; mysql_query("UPDATE users SET money=0 where userid=$userid",$c); $ir['money']=0; } } if ($chance == 2) { print "Nothing here. "; } if ($chance == 3) { $gained=rand(20,90)*$ir['level']; print "You found a bag of cash on the side walk you open it up and find [b]\$$gained[/b] was inside. "; mysql_query("UPDATE users SET money=money+$gained where userid=$userid",$c); } if ($chance == 7) { print "You see a guy getting mugged, but you decide to keep walking. You don't want to be in his shoes anytime soon. "; } if ($chance == 4) { print "While exploring the streets you found some cash, but a hobo came quickly behind you and whacked you over the head. You lurch in suprise and the hobo takes the cash and runs off."; } if ($chance == 5) { $gain = rand(5,20); print "While searching the streets you found [b]$gain[/b] crystals."; mysql_query("UPDATE users SET crystals=crystals+$gain where userid=$userid",$c); } if ($chance == 6) { $gain = rand(50,100)*(floor($ir['level']/2)+1); print "While searching the streets you found [b]\$$gain[/b]. "; mysql_query("update users set money=money+$gain where userid=$userid",$c); } if ($chance == 8) { print "Nothing here. Just a few drunk bums. "; } if ($chance == 9) { print "You see a small item on the ground, and decide to pick it up... wonder what it is? (Hint, look in your inventory lol)"; $itemidexplore = 40; mysql_query("INSERT INTO inventory VALUES('',$itemidexplore,$userid,1)",$c); print" "; } if ($chance == 10) { print "You see a syringe on the ground, and decide to pick it up. Looks deadly enough..."; $itemidexplore = 16; mysql_query("INSERT INTO inventory VALUES('',$itemidexplore,$userid,1)",$c); print" "; } if ($chance == 11) { print "Nothing here. "; } if ($chance == 12) { print "Nothing here. "; } if ($chance == 13) { $expcur=(($ir['exp']+$ir['exp_needed'])/100); $exp=(($expcur)*rand(1,5)); print "You got in a scuffle with a bum, and WON you gained some EXP!! (Go have a look!) "; mysql_query("UPDATE users SET exp=exp+$exp WHERE userid=$userid",$c); } if ($chance == 14) { print "Nothing here. "; } if ($chance == 15) { $hosptime=(int) rand(1,5); $loseruser = $ir['userid']; $reasonhosp = 'Stepped on a land mine while scavenging.'; mysql_query("UPDATE users SET hospital=$hosptime WHERE userid=$loseruser",$c); mysql_query("UPDATE users SET hospreason='$reasonhosp' WHERE userid=$loseruser",$c); event_add($ir['userid'],"You stepped on a land mine while exploring. Do be a bit more careful next time...",$c); die ("You stepped on a land mine. [b]Good news[/b]: You aren't dead [b]Bad News[/b]:You have to stop exploring and go into Recovery "); } $ir['turns']--; print"you have [b]{$ir['turns']}[/b] steps left "; } } if($ir['turns']==0) { print "Sorry, all turns used! "; } else { print " <form method=post action=street.php?action=scavenge><input type=hidden name=action value=scavenge><input type='text' name='steps' value='{$ir['turns']}'> <input type=submit value='scavenge'></form>"; } } $h->endpage; ?> Try that one for starters, don't forget to make sure that you've got "turns" in your user table...
-
Re: [Lite] Bugget streets v1 yh im getting the sasme error :? that stuff will need to be edited... I will write up the proper one and post it up soon. :P
-
Re: stats cap A septillion. :) Better yet would be a Googol, which is 1 followed by 99 zero's. A Googolplex is 1 with 100 zero's. This random information, brought to you by Vorlen's Stupid Facts.
-
Re: i need some help no i know a bit about programming but i have never tried this sort of programming the only bit know is how to put them onto the database its just the quarries i dont get I presume you mean you know how to upload the files, but not update the DATABASE (A database is the mySQL Database, not the file folder.) Take the queries that you have, open phpmyadmin and find your database. Click on it. Click SQL and put the queries there. Hit GO. If there is an error, report it here. Even then, you probably want to learn alot more about coding before actually opening a site. No, I'm not insulting you. I had to do the same when I started. :P
-
Re: I need a bit of help!!! ALL OWNERS AND CODERS!!! You'd be more than welcome to put a link to the myspace profile for me. If not, that's fine too!
-
Re: I need a bit of help!!! ALL OWNERS AND CODERS!!! Wonderful, I'm going to pop what I can on mine as well. So far I can name 2 DBS sites, AlphaCrime.com KingsAndPwns.com Add your site to the list of sites that will sport the link. If you need the songs let me know.
-
Re: I need a bit of help!!! ALL OWNERS AND CODERS!!! I appreciate it both of you. I will email you the music, Tupelo. Thanks again. Mind sending me a link to the site, so that I can put it on the list of sites that supports him. Thank you so much again.
-
Hey guys, sorry to do this, it probably sounds noobish. But I have a friend who is making his way to NY to try and get a record deal, if you will just post up a link or something to his MySpace (That's how he's tracking his fanbase). I have some of his songs that you can put on your radio stations every once in a while. PLEASE help me. His myspace is http://www.myspace.com/royaltytheking If you have a radio, PM ME HERE and help me out. THANKS. Even if you don't want to put the songs up, do me a favor and tell me that you have a radio in PM, we can talk anyways. :)
-
Re: donater icon thats what i got there Try if($ir['donatordays']) { $u = "<font color=red>{$ir['username']}</font>";$d=""; } That should give you two side by side, same thing, same alt text, just two of them. :)