
Delete !
Members-
Posts
224 -
Joined
-
Last visited
Never
Content Type
Profiles
Forums
Events
Everything posted by Delete !
-
[Other] Selling Full Back Up Of Urban-Warfare [Ask]
Delete ! replied to Delete !'s topic in Paid Modifications
Re: Selling Full Back Up Of Urban-Warfare fare enough fuck you and fuck coding :S -
[Other] Selling Full Back Up Of Urban-Warfare [Ask]
Delete ! replied to Delete !'s topic in Paid Modifications
Re: Selling Full Back Up Of Urban-Warfare I seriously cba with you and ur shitty little life any more serious go and bother some one else u fucking imp either he gets banned or i leave cos hes a fucking annoying little bastard who buys happines dude just fuck of out of my life you retard -
Re: Protection System [$10] Oh Lmao :P
-
Hey Ya'll wasup I Recently Designed A Game And Am Struggeling To Make Money For It So I Have Decided To Sell 2 Back-Ups Of It The Url is www.Urban-Warfare.co.cc Some Features In This Backup Contain User Shops Investment Bank Crystal Smuggeling Shoutbox Owner Pannel Pets Horse Racing Auction Market Suggestions Marital Agency Carnival Raffel (Cron Installed) Cars Whoerhouse Boydguard Agency PHD's Virus's Battle Ladder Bounty Market Drug Center Shortcuts Streets Status Stealth Mode Fight Search Stock Market Crystal Vault Improved Header Improved Register Unistalled Mods : Mining Scuba Diving Donator List Sql Tables : Over 130 Ready/Easy To Install Tables Clear Of All Dumps (These Are All Eaisly Added) And Many More Features ... This Game Copy Has The Potential To Gain Alot Of Money Although Im On A Free Domain And Host My users Enjoy Every Single Feature. Security : This Game Has Some Top Noch Secuirty Prevents Most Sql Attacks And A Few Extra Features That Could Potentioally Lead To Hyper Inflation In Your Games Economy Thanks If You Are Intrested Please Contact Me On [email protected] The Price Of The two items Is Negotiable And Not For Re-Sale Thanks =]
-
Re: Protection System [$10] So Its Like The Body Guard Agency Then ?
-
Re: Anyone watch movies online now a days? The Last Movie I Wathced Online Was Residet Evil 3 But It Was in 4 Different Parts Id Perfer To Watch The Blu-Ray Or Dvd Version
-
All Posts Valid Post Here The Best T.v Theme Tunes Of All Time =] I'll Start It off Errrr. Indiana Jones =]
-
Re: The Best Game Ever Released Iv only played diablo what is mafia like Good GFX ?
-
Re: The Best Game Ever Released Thats Very Genrous Although I Dont Actually Play Rune Scape I Hear Good things About It. *Thumbs Up To Nyna* Doom Is An Immense Game =]
-
This Is The Battle Of The Animated Comedy Programmes The Simpsons & Futerama Vs Family Guy & American Dad Post Your Replays On The Team That Wins =] Thanks For Your Input
-
Re: Delete User DP Unlike All Your Ideas ey ? Lmao :P
-
Re: The Best Game Ever Released How is it Its Just Fun ?
-
I'm Not Going To List Games But The Guidelines I'll Post Dates : Could Date from Anything As Early As 2000 Consoles It Can Be Played On : Any Accept Really Old Ones E.g Atari Game Genre : Any E.g Fantasy, Action, Sport E.t.c Game Name : E.g Gears Of War, Resistance Fall Of Man, Fifa 08 Please Post Them 4 When Replying Thanks For Your Input =]
-
Ok I Realised There Were Not That Many Debates So I'm Trying To Make Life :P Pick One Of The Following Consoles And Reply To The One You Think Is The Best Manufacture = Sony, Console = PS3 Manufacture = Sony, Console = PS2 Manufacture = Sony, Console = PS1 Manufacture = Microsoft, Console = Xbox Manufacture = Microsoft, Console = Xbox360 Manufacture = Microsoft, Console = Xbox360 (Elite) Manufacture = Nintendo, Console = The Wii Manufacture = Nintendo, Console = DS/GBA/Game Boy Colour Manufacture = Nintendo, Console = Nintendo 64 Manufacture = Nintendo, Console = Game Cube Manufacture = Sega, Console = Dreamcast Manufacture = Sega, Console = Sega Mega Drive Manufacture = Atari, Console = Atari (Early Version) Thanks For Your Input =]
-
Re: wats correct Agreed =]
-
Forums Function On staff Panel V2 Codes
Delete ! replied to chaoswar4u's topic in General Discussion
Re: Forums Function On staff Panel V2 Codes Try This =] <?php include "sglobals.php"; switch($_GET['action']) { case "addforum": addcity(); break; case "editforum": editcity(); break; case "delforum": delcity(); break; default: print "Error: This script requires an action."; break; } function addcity() { global $db, $ir, $c, $h, $userid; $name=$_POST['name']; $desc=$_POST['desc']; $auth=$_POST['auth']; if($auth and $desc and $name) { $q=$db->query("SELECT * FROM forum_forums WHERE ff_name='{$name}'"); if($db->num_rows($q)) { print "Sorry, you cannot have two forums with the same name."; $h->endpage(); exit; } $db->query("INSERT INTO forum_forums (ff_name, ff_desc, ff_auth, ff_lp_poster_name, ff_lp_t_name) VALUES('$name', '$desc', '$auth', 'N/A', 'N/A')"); print "Forum {$name} added to the game."; stafflog_add("Created Forum $name"); } else { print "<h3>Add Form</h3><hr /> <form action='staff_forums.php?action=addforum' method='post'> Name: <input class='textbox' type='text' name='name' /> Description: <input class='textbox' type='text' name='desc' /> Authorization: <input class='textbox' type='radio' name='auth' value='public' checked='checked' /> Public <input class='textbox' type='radio' name='auth' value='staff' /> Staff Only <input class='textbox' type='submit' value='Add Forum' /></form>"; } } function editcity() { global $db, $ir, $c, $h, $userid; switch($_POST['step']) { case "2": $name=$_POST['name']; $desc=$_POST['desc']; $auth=$_POST['auth']; $q=$db->query("SELECT * FROM forum_forums WHERE ff_name='{$name}' AND ff_id!={$_POST['id']}"); if($db->num_rows($q)) { print "Sorry, you cannot have two forums with the same name."; $h->endpage(); exit; } $name=$_POST['name']; $q=$db->query("SELECT * FROM forum_forums WHERE ff_id={$_POST['id']}"); $old=$db->fetch_row($q); $db->query("UPDATE forum_forums SET ff_desc='$desc', ff_name='$name', ff_auth='$auth' WHERE ff_id={$_POST['id']}"); print "Forum $name was edited successfully."; stafflog_add("Edited forum $name"); break; case "1": $q=$db->query("SELECT * FROM forum_forums WHERE ff_id={$_POST['id']}"); $old=$db->fetch_row($q); print "<h3>Editing a Forum</h3><hr /> <form action='staff_forums.php?action=editforum' method='post'> <input class='textbox' type='hidden' name='step' value='2' /> <input class='textbox' type='hidden' name='id' value='{$_POST['id']}' /> Name: <input class='textbox' type='text' name='name' value='{$old['ff_name']}' /> Description: <input class='textbox' type='text' name='desc' value='{$old['ff_desc']}' /> "; if($old['ff_auth']=="public") { print "Authorization: <input class='textbox' type='radio' name='auth' value='public' checked='checked' /> Public <input class='textbox' type='radio' name='auth' value='staff' /> Staff Only "; } else { print "Authorization: <input class='textbox' type='radio' name='auth' value='public' /> Public <input class='textbox' type='radio' name='auth' value='staff' checked='checked' /> Staff Only "; } print " <input class='textbox' type='submit' value='Edit Forum' /></form>"; break; default: print "<h3>Editing a Forum</h3><hr /> <form action='staff_forums.php?action=editforum' method='post'> <input class='textbox' type='hidden' name='step' value='1' /> Forum: ".forum2_dropdown($c, "id")." <input class='textbox' type='submit' value='Edit Forum' /></form>"; break; } } function delcity() { global $db,$ir,$c,$h,$userid; if($_POST['forum']) { $q=$db->query("SELECT * FROM forum_forums WHERE ff_id={$_POST['forum']}"); $old=$db->fetch_row($q); if($_POST['forum']==$_POST['forum2']) { die("You cannot select the same crime group to move the crimes to."); } $db->query("UPDATE forum_posts SET fp_forum_id={$_POST['forum2']} WHERE location={$old['ff_id']}"); $db->query("UPDATE forum_topics SET ft_forum_id={$_POST['forum2']} WHERE shopLOCATION={$old['ff_id']}"); recache_forum($_POST['forum2']); $db->query("DELETE FROM forum_forums WHERE ff_id={$old['ff_id']}"); print "Forum {$old['ff_name']} deleted."; stafflog_add("Deleted forum {$old['ff_name']}"); } else { print " <script type='text/javascript'> function checkme() { if(document.theform.forum.value==document.theform.forum2.value) { alert('You cannot select the same forum to move the posts to.'); return false; } return true; } </script> <h3>Delete Forum</h3><hr /> Deleting a forum is permanent - be sure. .<form action='staff_forums.php?action=delforum' method='post' name='theform' onsubmit='return checkme();'> Forum: ".forum2_dropdown($c, "forum")." Move posts & topics in the deleted forum to: ".forum2_dropdown($c, "forum2")." <input class='textbox' type='submit' value='Delete Forum' /></form>"; } } function report_clear() { global $db,$ir,$c,$h,$userid; $_GET['ID'] = abs((int) $_GET['ID']); stafflog_add("Cleared player report ID {$_GET['ID']}"); $db->query("DELETE FROM preports WHERE prID={$_GET['ID']}"); print "Report cleared and deleted! [url='staff_users.php?action=reportsview']> Back[/url]"; } function recache_forum($forum) { global $ir, $c, $userid, $h, $db; $q=$db->query("SELECT p.*,t.* FROM forum_posts p LEFT JOIN forum_topics t ON p.fp_topic_id=t.ft_id WHERE p.fp_forum_id=$forum ORDER BY p.fp_time DESC LIMIT 1"); if(!$db->num_rows($q)) { $db->query("update forum_forums set ff_lp_time=0, ff_lp_poster_id=0, ff_lp_poster_name='N/A', ff_lp_t_id=0, ff_lp_t_name='N/A',ff_posts=0, ff_topics=0 where ff_id={$forum}"); } else { $r=$db->fetch_row($q); $tn=mysql_escape($r['ft_name']); $pn=mysql_escape($r['fp_poster_name']); $posts=$db->num_rows($db->query("SELECT fp_id FROM forum_posts WHERE fp_forum_id=$forum")); $topics=$db->num_rows($db->query("SELECT ft_id FROM forum_topics WHERE ft_forum_id=$forum")); $db->query("update forum_forums set ff_lp_time={$r['fp_time']}, ff_lp_poster_id={$r['fp_poster_id']}, ff_lp_poster_name='$pn', ff_lp_t_id={$r['ft_id']}, ff_lp_t_name='$tn',ff_posts=$posts, ff_topics=$topics where ff_id={$forum}"); } } $h->endpage(); ?> It Works Fine On My game :) -
Re: mining Again Very Easy This Should Of Come In The Package You Bought Or The Post You Got It From :) =]
-
Re: I need help plz This Is A Very Easy Adon But Why Add More Staff Places That Means You Get More Mails Mivering You For Staff Placement Stick With 2/3 =]
-
Re: ipn_donator.php not crediting! The Origional Mc Donator Page Is Very Buggy With Not All The Features Working Your Best bet Is To Make Donator Items And Wait For The Donation To Transfer Before They Recive The Benfits ;) =]
-
Re: Hosting for Mccodes Agrre =] Byte Host Are Very Profesional About What They Do And Who They Sell To I Think My Brithers Game Was on There For About 6 Months With No Down Time ;) Also www.hostgator.com = Very Fast Reliable & Cheap =]
-
Re: Delete User DP I never said it was a bad modi just said what i thought I give you credit but i will not be using it dont take this the wrong way though im not trying to be a prick im one of them people who dont use the origional Dp packs :)
-
Re: Delete User DP Yea but for different packs there are different additions some people dont even use M;s origional Dp packs anymore so its a whole lot of editing for literaly nothing ... Oh and btw why not make them into items ? its alot easier and alot easier to delete =] Sorry Mr Junior it wont happen again
-
Re: BBCode_Engine Me Neither Although It maybe Useful I Dont Use It That Much, Besides More People Are Taking Time Out To Learn Html Not BB ... =]
-
Re: Delete User DP *cough* Wrong *cough* This deleted the Dp packs already on the game E.g Dp Pack One ($3.00) Completley from the game That would be to much hasstle for what its worth look at the code itself it dosnt sya ntohing about taking dp d days away or any benfits =]
-
Re: Tutorial: v1 - v2 Conversion That just sucks the fun out of the forums then dosnt it if everyone was as plain as that i dont think anyone would have any fun let the guy have is higlights Cos Its Cool