
Renkia
Members-
Posts
232 -
Joined
-
Last visited
Never
Content Type
Profiles
Forums
Events
Everything posted by Renkia
-
Ohh, and using Kenji's administrator account with out permision. ;)
-
Drizzle: In my case Jordan - Pudda, is a very nice person who help's alot aloot no noobies, and gives them hints & tips. And to be honest, you have no proof the make fun of everyone? Crazy-T, i never new Crazy-T untill yesterday, and in my case hes just sad. Why? Posing as Djhanna (really Djhanna), hacking Tyr's forum, over the 2 com'on names. Deleting everyones posts, that some people have writin S.A's in some. So to be honest, I wouldn't really want to get to know him, don`t really like hackers, no matter what. Now Zero, Iv'e never really spoken to the guys, I do now and then on MSN while hes kicking my ass on Conncet 4, lol. I Havn't seen many insult's of Crimgame saying "noobs", blah what ever. Only on some funny posts he calls people noobs. Im not taking sides, or arse licking, but I think these only behave to you because of your attitude. Anyways Thanks, for reading Renkia (Rasheed Saeed)
-
OK. Ignore my other post, I was "tierd", lol. So let me point out some ways, that could will help secure your game. 1: When you have your domain, never give to anyone, anyone. 2: Set up a sub-domain, and install Mccodes. 3: Pay some one to secure your game. MagicTallGuy - CrimGame/Zero-effect - Pudda My suggestion of who I would pay for security. 4: I Would ask them to secure my sub-domain, and copy all the codes from your sub-domain, into your Mccodes on your computer. Why secure the sub-domain? Now, domains, like mine chaotic-impulse.com is (quie't) know around some fourms, and of-course hackers will try and hack it. So of course, securing your subdomain out of ramdom, is a less likely chance of getting hack. It might take time replacing all the codes, but hey! its secured? Or he could secure the codes from his computer, you pay who ever, you get the Mccodes. Upload, Secured! Thats how I think its goes, lol. 5: Create your items/crimes/shops etc... Open the game. 6: When wanting a new mod pay some one to secure it, blah blah. 7: Enjoy your game life. Ohh, and a more chance of securing the game, in PHPMYADMIN, change the Table/databases name. And remeber to replace on all the codes, would give a more less chance of hacking the game. Ps. Use the domain like this. hey.heyapple.hey.heyapple.what.het.whayareyouannoying.idontknow.lol.lmoa.html.css.google.flamingo.cupid.grape.orange.rasheedsaeedisawesome.chaotic-impulse.com Cheers, and thanks for reading Rasheed Saeed (Renkia)
-
1: That aint stealing. 2: If its free, then its free. So i can post it, UNLESS they have left a comment on the mod, saying //For this FORUM only, i have no problems post it. And for one, i dont bitch. ;)
-
Crimgame: I Was not aware that,this was a paid modification. I Am currently on a friends computer since im staying as his, and this was in his file My Documents >> Game Mods > Mccodes >> Free Mods >> FILE FOUND Stop, stop bitching. *Sigh* And none modifications are made by you on his computer. Not that i know off. And, Chaoticpulse was a game i made, before i started to learn languages. I Haven't got CPanel information, so its been hacked. Simple? Dave: Sorted. Next time i post a mod, i will search around some sections on MWG. If i cannot find it, then it i will as CRIMGAME | DAVE | TYR To recognize the modification.
-
Nice, Nic. :) But, you never thought it through again, dont mean to be harsh. But as in all games, not every member is rich. And if they created a gang, that cost all there money, and got destroyed. Then they will be pissed of, that the gang cost, has gone up. Witch will probs cost them loads of money, and decided to go bonkers. Lol. :p
-
Lol. I Still don't understand. But since he added security. Pr-obs that. Lol :P
-
Hmm.. Cheers. :thumbup:
-
Djkanna. Quick question. How come put loads of spaces, and that. Lol. Curious. :) Cheers, Jordan.
-
Small Little Estate.php Update. Simple Mistake found by Djkanna, so thank him to. :) <?php // Mod Created By Mccodes V2 // Edited by Rasheed Saeed - Renkia // Copyright to Dev-community ([url]www.dev-community.net[/url]) // Contact me if any problems | [email][email protected][/email] require_once (dirname (__file__) .'/globals.php'); $mpq = $db->query ("SELECT `hWILL`, `hNAME` FROM `houses` WHERE (`hWILL` = ".$ir['maxwill'].") "); $mp= $db->fetch_row ($mpq); $_GET['property'] += 0; if($_GET['property']) { $npq=$db->query(" SELECT `hrNAME`, `hPRICE`, `hWILL` FROM `houses` WHERE (`hID` = ".$_GET['property'].") "); $np=$db->fetch_row($npq); if($np['hWILL'] < $mp['hWILL']) { echo "You cannot go backwards in houses!"; } else if ($np['hPRICE'] > $ir['money']) { echo "You do not have enough money to buy the ".stripslashes(htmlentities($np['hrNAME'], ENT_QUOTES)); } else { $db->query("UPDATE `users` SET `money` = `money` - ".$np['hPRICE'].", `will` = 0, `maxwill` = ".$np['hWILL']." WHERE (`userid` = ".$userid.") "); echo "Congrats, you bought the ".stripslashes(htmlentities($np['hNAME'], ENT_QUOTES))." for $".number_format($np['hPRICE']); } } else if (isset($_GET['sellhouse'])) { $npq=$db->query("SELECT `hPRICE`, `hNAME`, FROM `houses` WHERE (`hWILL` = ".$ir['maxwill'].") "); $np=$db->fetch_row($npq); if ($ir['maxwill'] == 100) { echo "You already live in the lowest property!"; } else { $db->query("UPDATE users SET `money` = `money` +".$np['hPRICE'].", `will` = 0, `maxwill` = 100 WHERE (`userid` = ".$userid.") "); echo "You sold your ".stripslashes(htmlentities($np['hNAME'], ENT_QUOTES))." and went back to your shed."; } } else { echo "<span style='font-weight: bold; text-align: center;'><span style='text-decoration: underline;'>Your current property:</span> ".$mp['hNAME']."</span> The houses you can buy are listed below. Click a house to buy it. "; if ($ir['willmax'] > 100) { print "<a href='estate.php?sellhouse'> <u>Sell Your Property</u>?</a> "; } /*$hq= $db->query ("SELECT * FROM houses WHERE (`hWILL` >".$ir['maxwill'].") ORDER BY `hWILL` ASC"); while ($r=$db->fetch_row($hq)) {*/ echo "<table cellspacing='1' class='table'><tr style='background:gray;'> <span style='font-color: black;'><th>House</th><th>House Price</th><th>House Will</th><th>Buy?</th></tr>"; $hq=$db->query("SELECT * FROM `houses` WHERE (`hWILL` > ".$ir['maxwill'].") ORDER BY hWILL ASC"); while($r=$db->fetch_row($hq)) { echo "<tr><td style='text-align: center;'>".stripslashes(htmlentities($r['hNAME'], ENT_QUOTES))."</td> <td style='text-align: center;'>$".number_format($r['hPRICE'])."</td><td style='text-align: center;'>".$r['hWILL']."</td> <td style='text-align: center;'><a href='estate.php?property=".$r['hID']."'>Buy</td></tr>"; } /*}*/ print "</table>"; } $h->endpage(); ?> Hope You Enjoy! Regards, Rasheed Saeed - Renkia
-
Doesnt look to bad. Abit plain sorry. :(
-
Please dont take this the wrong way. But your 230 days on your game, and huge inprovment could of been made through out that time. HUGE Improvment. I Already discoverd it was not secured. Eeven the crystal market. 8| I Suggest you work on your site as soon as your read this mail. Ps. Your luck Dickio (Decio) hasnt hacked your game.
-
Lol, sorry. I Posted on a forum were i am a moderator. Forgot to remove that. XD And what do you mean by Alot? Lol. Please give me some examples. :)
-
Hey Makewebgames! I Was on my file manager and noticed, on some games, people stay in hospital to long, and might cost them too much. So i just edited this froma nother file. What do i need? Create 1 PHP File Edit 1 PHP File Open hospital and replace with this: <?php include "globals.php"; print "<h3>Hospital</h3> <table width='75%' class=\"table\" border=\"0\" cellspacing=\"1\"><tr bgcolor=gray><th>Name</th> <th>Level</th> <th>Time</th><th>Reason</th> <th>Actions</th></tr>"; $q=$db->query("SELECT u.*,c.* FROM users u LEFT JOIN gangs c ON u.gang=c.gangID WHERE u.hospital > 0 ORDER BY u.hospital DESC",$c); while($r=$db->fetch_row($q)) { print "\n<tr><td>{$r['gangPREFIX']} [url='viewuser.php?u={$r[']{$r['username']}[/url] [{$r['userid']}]</td><td> {$r['level']}</td><td>{$r['hospital']} minutes</td><td>{$r['hospreason']}</td><td>[url='hospitalheal.php?ID={$r[']Heal[/url]</td></tr>"; } print "</table>"; $h->endpage(); ?> Craete a new file and called it hospitalheal.php and add in: <php include "globals.php"; if($ir['hospital']) { die("You cannot heal people, while in Hospital."); } $_GET['ID']=abs((int) $_GET['ID']); $r=$db->fetch_row($db->query("SELECT * FROM users WHERE userid={$_GET['ID']}")); if(!$r['userid']) { die("Invalid user"); } if(!$r['hospital']) { die("That user is not in Hospital!"); } $cost=$r['level']*5000; $cf=number_format($cost); if($ir['money'] < $cost) { die("Sorry, you do not have enough money to heal, {$r['username']}. You need \$cf."); } print "You successfully Healed {$r['username']} from hospital for \$cf. > [url='inde.php']Back[/url]"; $db->query("UPDATE users SET money=money-{$cost} WHERE userid=$userid"); $db->query("UPDATE users SET hospital=0 WHERE userid={$r['userid']}"); event_add($r['userid'], "[url='viewuser.php?u={$ir[']{$ir['username']}[/url] healed from hospital.", $c); $h->endpage(); ?> Your done! It was simple. But could be good for some games. Feeback & comments are welcome. Regards, Rasheed Saeed - Renkia
-
Nice Nicholas! Ive never really thought of that, and to be honest its a good little update. But think? What if people put alot of money in there gang and it all went? Surly you could steal like 12-31% of there money and the rest gets divided between the gang members? Surly this would be a better idea in my opinion. Anyway its a great way to get people in gangs now. +1 :thumbsup:
-
Yep i was hoping to do that. I Work with GIMP so i could do it at home, upload to tinypic, open my HOTMAIL in school grab link and paste in colour. Plus another way would be to advertise on SOL (SamuraiofLegend) I Havnt spoke to the owner about this but hopfully he will say yes. Plus the features are better. 760,000 Players. A Certin amount a cost a month & Would last longer. Plus i have a friend who owns a hosting he will gladly let me make a banner for an advertisment and post on his hosting. And leaving posters in books Zero, You cheaky sod. :P Regards, Rasheed Saeed - Renkia
-
Cheers a_bertrand Sorry for making you type it up, but i havnt seen this before. Plus it makes perfect sence? :P
-
Hey guys! Sorry i havnt been on i have had to pay the bill for the INTERNET. Since there was no internet i had a spare of MTG (MagicTallGuy) Forum. And i was wondering how is this secure? It would help if some-one could explain How & Why it will secure your $_GET? $_GET['reply'] = abs(@intval($_GET['reply'])); Regards, Rasheed Saeed - Renkia
-
Creating free secure modifications, need suggestions
Renkia replied to a topic in General Discussion
File Name: Header.php Loads of peoples game are unsecured mostly there headers, maybe if you could sort one out for me and i will post around some game? :P Regards, Rasheed Saeed - Renkia -
Ok cheers guys, sorry for the late response. Now Haunted Dawg You have a very good point and your spot on. All tho i wouldnt spend near enough £2000 on advertising. Fot the person who said this but making fan pages on facebook and bebo or what ever is a good way to be honest. And free. :P To hear that advertising is so much im thinking of a plan for my school. Loads of people play Texted Based RPG, so this could be an big way to advertise. But more ideas to come. ?( Regards, Rasheed Saeed - Renkia
-
Hmmm, Advertisments are gonna be a big problem then. I Doubt i will spend $2000 On advertisments. But surly i could work somthings out.