-
Posts
2,691 -
Joined
-
Last visited
-
Days Won
85
Content Type
Profiles
Forums
Events
Everything posted by Uridium
-
This mod will allow you to set the amount of emails players send each other ingame per day SQLS [mysql]ALTER TABLE users ADD `sent_mail_count` int(11) NOT NULL default '25'; ALTER TABLE users ADD `sent_mail` int(11) NOT NULL default '0'; ALTER TABLE users ADD `mail_max` int(11) NOT NULL default '25';[/mysql] change both 25's to the allowed number per day cron for cron day $db->query("UPDATE users SET sent_mail_count=mail_max"); $db->query("UPDATE users SET sent_mail=0"); mailbox.php <?php // illusions July 2010 include "globals.php"; if($ir['mailban']) { die("<font color=red><h3>! ERROR</h3> You have been mail banned for {$ir['mailban']} days. [b]Reason: {$ir['mb_reason']}</font>[/b]"); } $_GET['ID'] = abs((int) $_GET['ID']); print <<<OUT <table width=90% bgcolor='#A1A1A!' cellspacing='1'> <tr> <td align=center>[url='mailbox.php?action=inbox'][img=imageicons/emailnew.png][/url]</td> <td align=center>[url='mailbox.php?action=outbox'][img=imageicons/emailsend.png][/url]</td> <td align=center>[url='mailbox.php?action=compose'][img=imageicons/emailedit.png][/url]</td> <td align=center>[url='mailbox.php?action=delall'][img=imageicons/emaildel.png][/url]</td> <td align=center>[url='mailbox.php?action=archive'][img=imageicons/emailsave.png][/url]</td> <td align=center>[url='contactlist.php'][img=imageicons/emailcontacts.png][/url]</td> </tr> </table> OUT; $mail=(int) ($ir['sent_mail']/$ir['mail_max']* $ir['mail_max']); if($ir['sent_mail'] > $ir['mail_max']) { $mail2 = $ir['sent_mail_count'];} $mail2=$ir['mail_max']-$mail; // IF EMAILS EXCEED 1 THEN USE EMAILS AND NOT EMAIL if($ir['sent_mail_count'] > "1") { print <<<OUT [b]Mail Quota You can send another <font color=yellow>{$ir['sent_mail_count']}</font> Emails Today [/b] <font color=lightgreen>{$ir['sent_mail']}/{$ir['mail_max']} </font> <img src=Happy_bar.png width=$mail2 height=10><img src=Red_bar.png width=$mail height=10> OUT; } // MAKE SURE EMAIL WHEN COUNT REACHES ONE CALLS FOR LAST EMAIL elseif($ir['sent_mail_count'] == "1") { print <<<OUT [b]You are currently on your final email for today [/b] <font color="#ffffff">{$ir['sent_mail']}/{$ir['mail_max']} </font> <img src=Happy_bar.png width=$mail2 height=10><img src=Red_bar.png width=$mail height=10> OUT; } else { print <<<OUT [b]Mailbox Quota:[/b] <font color=lightgreen>Quota has been Reached </font> OUT; } global $db,$ir,$c,$userid,$h; switch($_GET['action']) { case 'inbox': mail_inbox(); break; case 'outbox': mail_outbox(); break; case 'compose': mail_compose(); break; case 'delete': mail_delete(); break; case 'send': mail_send(); break; case 'delall': mail_delall(); break; case 'delall2': mail_delall2(); break; case 'archive': mail_archive(); break; case 'read': mail_view(); break; case 'del': mail_massdel(); break; default: mail_inbox(); break; } function mail_inbox() { global $db,$ir,$c,$userid,$h; print<<<END <SCRIPT><!-- HIDE function setCheckboxes(the_form, do_check) { var elts = (typeof(document.forms[the_form].elements['ID[]']) != 'undefined') ? document.forms[the_form].elements['ID[]'] : (typeof(document.forms[the_form].elements['ID[]']) != 'undefined') ? document.forms[the_form].elements['ID[]'] : document.forms[the_form].elements['ID[]']; var elts_cnt = (typeof(elts.length) != 'undefined') ? elts.length : 0; if (elts_cnt) { for (var i = 0; i < elts_cnt; i++) { elts[i].checked = do_check; } // end for } else { elts.checked = do_check; } // end if... else return true; } // STOP HIDING --></SCRIPT> END; print <<<OUT Only the last 25 messages sent to you are visible. <table width=80% class=table cellspacing="1"> <tr> <td class="h" align=center>From</td> <td class="h" align=center>Status</td> <td class="h" align=center>Read</td> <td class="h" align=center>Delete</td> </tr> <form name='masssell' method=post action=mailbox.php?action=del> OUT; $q=$db->query("SELECT m.*,u.* FROM mail m LEFT JOIN users u ON m.mail_from=u.userid WHERE m.mail_to=$userid ORDER BY mail_time DESC LIMIT 25"); $i=0; while($r=$db->fetch_row($q)) { print "<tr class=\"d".($i & 1)."\"><td align=center>"; $i++; if($r['userid']) { print "[url='viewuser.php?u={$r[']{$r['username']}[/url] [{$r['userid']}]"; } else { print "SYSTEM"; } if($r['mail_read'] == 0) { $status="<font color=red>Un-Opened</font>"; } else { $status="<font color=green>Opened</font>"; } print " </td> <td align=center> $status </td> <td align=center> [url='mailbox.php?action=read&ID={$r[']Open[/url] </td> <td align=center> <a href='mailbox.php?action=delete&ID={$r['mail_id']}'> <img src=imageicons/delsmall.png height=20 width=20 > </a> <input type='checkbox' name='del$i' value='yes'> <input type='hidden' name='id$i' value='{$r['mail_id']}'> </td></tr>"; } print<<<END <tr> <td colspan=5 align=center> <input name=sellmass type=submit id=sellmass value='Delete selected'><a href=# onClick="setCheckboxes('masssell',true); return false;'> Check All</A> | [url="#"]Uncheck All[/url] </form> </td> </tr> </table> END; } function mail_outbox() { global $db,$ir,$c,$userid,$h; print "Only the last 25 messages you have sent are visible. <table width=90% cellspacing=1 class='table'><tr style='background:gray'><th>To</th><th>Subject/Message</th><th>When</th><th>Message</th><th>Status</th></tr>"; $q=$db->query("SELECT m.*,u.* FROM mail m LEFT JOIN users u ON m.mail_to=u.userid WHERE m.mail_from=$userid ORDER BY mail_time DESC LIMIT 25"); while($r=$db->fetch_row($q)) { $sent=date('F j, Y, g:i:s a',$r['mail_time']); $status = ($r['mail_read'] == 0) ? "<font color=red>Unread</font>" : "<font color=green>Read</font>"; print "<tr><td>[url='viewuser.php?u={$r[']{$r['username']}[/url] [{$r['userid']}]</td><td>{$r['mail_subject']}</td><td>Sent at: $sent</td><td>{$r['mail_text']}</td><td>$status</td></tr>"; } print "</table>"; } function mail_compose() { global $db,$ir,$c,$userid,$h; if($ir['sent_mail_count'] == "0") { print" <h1>Your Quota for today has been reached</h1>"; die(); } print "<form action='mailbox.php?action=send' method='post'> <table width=90% cellspacing=1 class='table'> <tr> <td>Contact to send to:</td> <td>"; $q=$db->query("SELECT c.*, u.username FROM contactlist c LEFT JOIN users u ON c.cl_ADDED=u.userid WHERE c.cl_ADDER={$userid} ORDER BY u.username ASC"); if($db->num_rows($q) == 0) { print "You have no contacts!"; } else { print "<select class='textbox' name='user1' type='dropdown'><option value=''><select a contact...></option>"; while($r=$db->fetch_row($q)) { print "<option value='{$r['username']}'>{$r['username']}</option>"; } print "</select>"; } if($_GET['ID']) { $user=$db->fetch_single($db->query("SELECT username FROM users WHERE userid={$_GET['ID']}")); } print "</td></tr><tr> <td>[b]OR[/b] Enter a username to send to:</td><td><input class='textbox' type='text' name='user2' value='{$user}' /></td></tr><tr> <td> <a href=\"smilies.php\" target=\"_new\">Available Smilies</a> </td><td> <table class=textbox border=0 cellspacing=0 width=100%> </table> </td></tr><tr> <td colspan=2><center>"; if($ir['sent_mail_count'] == "0") { print" Unable to send message"; } else { echo "<p style=\"text-align: center;\"></p>"; echo "<form action='mailbox.php?action=send' method='post'><table style=\"border: solid #292929 0px; margin: 0 auto 0 auto;\"> <tr><td><p style=\"text-align: right; font-weight: bold; margin: 0 0 0 0;\">Subject:</p></td><td><input type=\"text\" size=\"35\" name=\"subject\" /></td></tr> <tr><td><p style=\"text-align: right; font-weight: bold; margin: 0 0 0 0;\">Message:</p></td><td><textarea name=\"message\" cols=\"65\" rows=\"6\"></textarea></td></tr> <tr><td></td><td><p style=\"text-align: right; margin: 0 0 0 0;\"><input type='submit' value='Send' onClick='return checksubmit(this)'></p></td></tr></table></form> </center></td></tr><tr><td colspan=2 style='background-color:#999999;'>[b]<center>Icons</td></tr><tr><td colspan=2><center> Hover over icons to get the code that is needed to send the icon [img=smilies/icon_smile.gif] [img=smilies/icon_biggrin.gif] [img=smilies/icon_cool.gif] [img=smilies/smiley7.gif] [img=smilies/lachen001.gif] [img=smilies/icon_neutral.gif] [img=smilies/sprachlos020.gif] [img=smilies/icon_sad.gif] [img=smilies/icon_eek.gif] [img=smilies/icon_rolleyes.gif] [img=smilies/aetsch013.gif] [img=smilies/icon_razz.gif] [img=smilies/icon_confused.gif] [img=smilies/aktion033.gif] [img=smilies/icon_wink.gif] </center></td></tr></table></form>"; } if($_GET['ID']) { print " <table width=90% border=2><tr><td colspan=2>[b]Your last 5 mails to/from this person:[/b]</td></tr>"; $q=$db->query("SELECT m.*,u1.username as sender from mail m left join users u1 on m.mail_from=u1.userid WHERE (m.mail_from=$userid AND m.mail_to={$_GET['ID']}) OR (m.mail_to=$userid AND m.mail_from={$_GET['ID']}) ORDER BY m.mail_time DESC LIMIT 5",$c); while($r=$db->fetch_row($q)) { $sent=date('F j, Y, g:i:s a',$r['mail_time']); print "<tr><td>$sent</td> <td>[b]{$r['sender']} wrote:[/b] {$r['mail_text']}</td></tr>"; } print "</table>"; } } function mail_send() { global $db,$ir,$c,$userid,$h; $subj=str_replace(array("\n"),array(" "),strip_tags($_POST['subject'])); $msg=str_replace(array("\n"),array(" "),strip_tags($_POST['message'])); if($_POST['user1'] && $_POST['user2']) { die("Please do not select a contact AND enter a username, only do one. [url='mailbox.php']> Back[/url]"); } if(!$_POST['user1'] && !$_POST['user2']) { die("You must select a contact or enter a username. [url='mailbox.php']> Back[/url]"); } $codes = array( ':]', ':D', ':oo:', ':angry:', ':lol:', '::|:', ':O', ':(', 'O.O', ':roll:', ':)', ':P', ':S', ':nut:', ';)', ); $images = array( '[img=smilies/icon_smile.gif]', '[img=smilies/icon_biggrin.gif]', '[img=smilies/icon_cool.gif]', '[img=smilies/smiley7.gif]', '[img=smilies/lachen001.gif]', '[img=smilies/icon_neutral.gif]', '[img=smilies/sprachlos020.gif]', '[img=smilies/icon_sad.gif]', '[img=smilies/icon_eek.gif]', '[img=smilies/icon_rolleyes.gif]', '[img=smilies/aetsch013.gif]', '[img=smilies/icon_razz.gif]', '[img=smilies/icon_confused.gif]', '[img=smilies/aktion033.gif]', '[img=smilies/icon_wink.gif]', ); $newmsg = str_replace($codes, $images, $msg); $to=($_POST['user1']) ? $_POST['user1'] : $_POST['user2']; $q=$db->query("SELECT userid FROM users WHERE username='{$to}'"); if($db->num_rows($q)==0) { die("You cannot send mail to nonexistant users. [url='mailbox.php']> Back[/url]"); } $to=$db->fetch_single($q); $db->query("INSERT INTO mail VALUES ('',0,$userid,$to,unix_timestamp(),'$subj','$newmsg')"); $db->query("UPDATE users SET new_mail=new_mail+1 WHERE userid={$to}"); $db->query("UPDATE users SET sent_mail=sent_mail+1 WHERE userid={$userid}"); $db->query("UPDATE users SET sent_mail_count=sent_mail_count-1 WHERE userid={$userid}"); print "Message sent. [url='mailbox.php']> Back[/url]"; } function mail_delete() { global $db,$ir,$c,$userid,$h; $db->query("DELETE FROM mail WHERE mail_id={$_GET['ID']} AND mail_to=$userid"); print "Message deleted. [url='mailbox.php']> Back[/url]"; } function mail_delall() { global $ir,$c,$userid,$h; print "This will delete all the messages in your inbox. There is [b]NO[/b] undo, so be sure. [url='mailbox.php?action=delall2']> Yes, delete all messages[/url] [url='mailbox.php']> No, go back[/url]"; } function mail_delall2() { global $db,$ir,$c,$userid,$h; $db->query("DELETE FROM mail WHERE mail_to=$userid"); print "All ".$db->affected_rows()." mails in your inbox were deleted. [url='mailbox.php']> Back[/url]"; } function mail_archive() { global $ir,$c,$userid,$h; print "This tool will download an archive of all your messages. [url='dlarchive.php?a=inbox']> Download Inbox[/url] [url='dlarchive.php?a=outbox']> Download Outbox[/url]"; } function mail_view() { global $db,$ir,$c,$userid,$h; $_GET['ID'] = abs(@intval($_GET['ID'])); $killview = $db->query("SELECT m.*,u.* FROM `mail` AS `m` ". "LEFT JOIN `users` AS `u` ON (m.`mail_from` = u.`userid`) ". "WHERE ((m.`mail_to` = $userid) && (m.`mail_id` = {$_GET['ID']})) LIMIT 1") or die($db->error()); if(!$_GET['ID']) { echo '<h1>Error!</h>'; $h->endpage(); exit; } if(!mysql_num_rows($killview)) { echo '<h1>You cannot view Other users Emails!</h1>'; $h->endpage(); exit; } $mail = mysql_fetch_object($killview); $sent = date('F j, Y, g:i:s a', $mail->mail_time); print <<<OUT <table width=90% class="table" border="0" cellspacing="1"> <tr> <td class="h" width=25%>From</td> <td class="h" width=75%>Subject/Message</td> </tr> OUT; echo'<tr><td>'; if($mail->userid) { print "[url='viewuser.php?u=". $mail->userid ."']". $mail->username ."[/url] [". $mail->userid ."]"; } else { print "SYSTEM"; } $fm=urlencode($r['mail_text']); print "</td>\n<td>". $mail->mail_subject ."</td></tr><tr><td>Sent at: $sent "; if($ir['mailban'] == 0 && $ir['sent_mail'] < $ir['mail_max']) { print "[url='mailbox.php?action=compose&ID=". $mail->userid ."']Reply[/url] "; } if($ir['sent_mail'] > $ir['mail_max'] ) { print"<font color=red> No Credits Left</font> "; } print "[url='mailbox.php?action=delete&ID=". $mail->mail_id ."']Delete[/url] [url='preport.php?ID=". $mail->userid ."&report=Fradulent mail: {$fm}']Report[/url]</td><td>". $mail->mail_text ."</td></tr>"; if($r['mail_read'] == 0) { $db->query("UPDATE mail SET mail_read=1 WHERE mail_to=$userid AND mail_id={$_GET['ID']} LIMIT 1"); $db->query("UPDATE users SET new_mail=new_mail-1 WHERE userid=$userid"); } print "</table>"; } function mail_massdel() { global $db,$ir,$c,$userid,$h; $counter = 1; $deleted=0; while ($counter < 25) { $dodel = "del" . $counter; if ($_POST[$dodel] == "yes") { $delid = "id" . $counter; $db->query("DELETE FROM mail WHERE mail_to=$userid AND mail_id={$_POST[$delid]}") or die(mysql_error()); $deleted++; } $counter++; } print "<center> $deleted messages deleted. <a href=mailbox.php>> Back</a>"; } print " Mail count mixed up? Click [url='mailboxfix.php?fix=1']Here[/url] to fix"; $h->endpage(); ?> Download these images and send the imageicons folder to your ftp
-
sorry my fault try this <?PHP switch($_GET['action']) { case 'info': viewuser_info(); break; case 'pics': viewuser_pics(); break; case 'wall': viewuser_wall(); break; case 'videos': viewuser_videos(); break; case 'links': viewuser_links(); break; default: start_new_func(); break; } function start_new_func() { global $ir,$c,$userid,$h; print "</td><td valign=top><table width=100% border=1><tr><td><center>[url='viewuser.php?action=info'][b]Info[/b][/url]</center></td> <td><center>[url='viewuser.php?action=pics'][b]Photos[/b][/url]</center></td> <td><center>[url='viewuser.php?action=wall'][b]Wall[/b][/url]</center></td> <td><center>[url='viewuser.php?action=videos'][b]Videos[/b][/url]</td> <td><center>[url='viewuser.php?action=videos'][b]Videos[/b][/url]</center></td> <td><center>[url='viewuser.php?action=links'][b]Links[/b][/url]</center></td></tr> </table> "; } function viewuser_info() { global $ir,$c,$userid,$h; print "User Info Stuff Here. <table width=100% border=1><tr style='background:gray'><th>User Info</th></tr>"; print "<tr><td></td></tr>"; } function viewuser_pics() { global $ir,$c,$userid,$h; print "User Pics Stuff Here. <table width=100% border=1><tr style='background:gray'><th>User Pics</th></tr>"; print "<tr><td></td></tr>"; } function viewuser_wall() { global $ir,$c,$userid,$h; print "User Wall Stuff Here. <table width=100% border=1><tr style='background:gray'><th>User Wall</th></tr>"; print "<tr><td></td></tr>"; } function viewuser_videos() { global $ir,$c,$userid,$h; print "User Videos Stuff Here. <table width=100% border=1><tr style='background:gray'><th>User Videos</th></tr>"; print "<tr><td></td></tr>"; } function viewuser_links() { global $ir,$c,$userid,$h; print "User Links Stuff Here. <table width=100% border=1><tr style='background:gray'><th>User Links</th></tr>"; print "<tr><td></td></tr>"; } print "</table></td></tr></table></td><td width='20%' valign=top>"; and just for future ref when posting PHP scripts use the [ php ] [ / php ] tags
-
I just releasied i posted my preferences Instead of your copy sorry.
-
ive often wondered how many of these statemtents are in the MCCODES files ? global $db,$ir, $c; if($ir['user_level'] != 2) { die("403"); } so if they could be cleaned up and used to do other things then thats a bonus ? Like giving reasons why giving a link back to a page of desired choice all on one line with no echo or print ? 2 steps Firstly put this into your globals_func.php file function pagemessage($title = "", $back = "", $message = "") { global $db,$ir; if ($ir) { echo "<p style=\"text-align: center;\"><h1>$title</h1><p style=\"text-align: center;\">$message</p> <hr style=\"width: 500px;\" /><p style=\"text-align: center; font-weight: bold;\"><a href=\"$back\">Back</a></p>"; die(); } } Now any pages where you have the unslghtly global $db,$ir, $c; if($ir['user_level'] != 2) { die("403"); } replace with global $db,$ir, $c; if($ir['user_level'] != 2) pagemessage("PAGE NAME", "REDIRECTPAGE.php", "REASON FOR SENDING USER BACK TO REDIRECT PAGE"); The same can also be done for the use for those in jail or hosp if($ir['jail'] or $ir['hospital']) pagemessage("EXPLORE", "index.php", "YOU CANNOT VIEW THIS PAGE IF IN JAIL OR HOSPITAL");
-
Im disguested in the name of the game and i think its taking things to the extremes of blantant outrage for those people who suffer long term defects for no fault of their own...
-
remove any HTACCES files from your root and see if that cures the problem
-
You have to remember when a SQL inserts from a file example INSERT INTO it continues from its last ID so even if you had ID1 then decided to INSERT ID 1000 it will continue from ID 10000. if you dont have many users in the game you could extract the tables users, userstats, inventory and manually fix the numbers dont forget though you will need to make the final id of the table 1 higher when inserting example on your extracted SQLS you will see ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1000 <<< using 1000 as a guidline so if your real value is 23 then the 1000 needs to be 24
-
Getting An Not A Vaid MYSQL Error, Please Help
Uridium replied to VegasKiller's topic in Modification Support
try using $db->query instead of mysql_query see if that helps ive seen this before on a test site i had and when i moved to a new host i had to change most things to $db->query -
only thing i can see thats out of place is the mainmenu on IE its too far left on FF its fine... IE never did like css its always been a pain
-
How are they hitting that amount so quickly ? Created:2009-10-26 Expires:2011-10-26 Updated:2010-03-22 Its less than a year old
-
The mod that will blow your mind as promised [23% complete]
Uridium replied to Uridium's topic in Requests & In Production
None at moment im afraid been quite busy with other projects but i do still intend to finish this.. -
I dont think this mod Ever saw the light of day of working.
-
Nice work seany :)
-
It looks to me like your creategang.php is at fault your either missing some perameters for the iNSERT INTO or your missing some INPUT statements You'll need to copy and paste yout creategang.php for us to look at..
-
Your all missing the point of this mod it can do what ever you want it to do you just have to add o it.. The starting blocks have already been built its up to you from now on how far you want to keep building it..
-
I have no problems with you acrchiving any of my mods
-
Love you too my sugar plum fairy are we still on for that gangbang, ive found some whinos who are willing to join in but they need feeding first can you supply the food Sexy ;)
-
when you use a FTP program from your pc and login to your server usually on the LEFT side is folders from your PC and RIGHT are folders from your FTP. public_html is always classed as the root folder so this is where your game scripts go....
-
equip_armor.php <?php include "globals.php"; $_GET['ID'] = abs((int) $_GET['ID']); $id=$db->query("SELECT iv.*,it.* FROM inventory iv LEFT JOIN items it ON iv.inv_itemid=it.itmid WHERE iv.inv_id={$_GET['ID']} AND iv.inv_userid=$userid LIMIT 1"); if($db->num_rows($id)==0) { print "Invalid item ID"; $h->endpage(); exit; } else { $r=$db->fetch_row($id); } if(!$r['armor']) { print "This item cannot be equipped to this slot."; $h->endpage(); exit; } if($_GET['type']) { if(!in_array($_GET['type'], array("equip_armor"))) { print "This slot ID is not valid."; $h->endpage(); exit; } if($ir[$_GET['type']]) { item_add($userid, $ir[$_GET['type']], 1); } item_remove($userid, $r['itmid'], 1); $db->query("UPDATE users SET {$_GET['type']} = {$r['itmid']} WHERE userid={$userid}"); print "Item {$r['itmname']} equipped successfully.<META HTTP-EQUIV=Refresh CONTENT='1;url=inventory.php'>"; } else { print "<h3>Equip Armor</h3><hr /> <form action='equip_armor.php' method='get'> <input type='hidden' name='ID' value='{$_GET['ID']}' /> Click Equip Armor to equip {$r['itmname']} as your armor, if you currently have any armor equipped it will be removed back to your inventory. <input type='hidden' name='type' value='equip_armor' /> <input type='submit' value='Equip Armor' /></form>"; } $h->endpage(); ?> And incase your having problems with weapons its exactly the same code as above just change the word armor to weapon and save as equip_weapon.php
-
this should help you [any version] Removal of 1 minute crons
-
For those who have this if your searches exceed 100 then for some reason JDS reported error will occur
-
filezila is a free upoading client and should help with what you need http://filezilla-project.org/ or there is a 30 day trial of WSFTP
-
Replace your $db->query with this one $db->query("INSERT INTO gangs VALUES('','$name','$desc','','',0,0,100,$userid,$userid,5,0,0,'')"); or just copy and paste this <?php include "globals.php"; if($ir['money'] < 500000){die("You don't have enough money. You need \$500,000."); } if($ir['gang']){die ("You're already in a gang!"); } if($_POST['submit']){$name=htmlspecialchars($_POST['name']); $desc=htmlspecialchars($_POST['desc']); $db->query("INSERT INTO gangs VALUES('','$name','$desc','','',0,0,100,$userid,$userid,5,0,0,'')"); $i=$db->insert_id(); $db->query("UPDATE users SET gang=$i,money=money-500000 where userid=$userid"); print "Gang created!"; }else { print "<h3> Create A Gang </h3><form action='creategang.php' method='post'><input type='hidden' name='submit' value='1' />Name:<input type='text' name='name' /> Description: <textarea name='desc' cols='40' rows='7'></textarea> <input type='submit' value='Create Gang for \$500,000' /></form>"; } $h->endpage(); ?>
-
Well stated ;)
-
i get quite a lot of Inbox messages asking where is a mod ive made so heres a list + links to mods ive created for CE/MWG. SORRY GUYS AND GALS THESE LINKS DONT WORK YET WILL UPDATE AND CHANGE THIS MESSAGE WHEN COMPLETED 1 = Maintenance Mode Mod (upgraded with more options) 2 = Education Mod with Clicks + Extras 3 = Move Images from one folder to another 4 = Game Owner Replenish Options 5 = Meta Tag Generator 6 = Christmas Advent Calendar 7 = Google Image Finder Ingame 8 = User Planner 9 = NPC Ingame Editor 10 = Hacking Attempts Logged 11 = Track Users IP 12 = Mobile Text Messaging [same as Mailbox] But Using Mobile Numbers 13 = Set Sell Price to House After its been Purchased 14 = File Creator + Ingame File Editor 15 = Abduct someone from Hospital 16 = Compare Items and Houses 17 = Send users Secret Messages 18 = Advanced Theme Creator 19 = Customise How Your Game Operates 20 = Updated Media Script add any Media to your site. 21 = Freeze + Reactivate a Users Bank Account 22 = Mailbox Quota = Set amount of emails sent per day 23 = Userlist and other Lists decend NEW 24 = Accept or Freeze Multi User Accounts 25 = Add Attack Timer to Attacks Im still Sifting through search pages so there will probably be more than there is here NOTE: These ADDITIONS are Free to use and Upgrade for your own use and MUST NOT be sold in any way either single or packaged. You have the right to Modify any of these ADDITIONS for your MCCODES game without prior notice to myself as long as any Copyright heading that ive placed on a ADDITION stays intact. JOINT WORK FOOTNOTE: Any ADDITIONS that have been deemed as a Joint effort between myself and other Writers. The right to Modify maybe flawed Until you have Consent from all joint parties that you intend to Alter/Add/Amend and source therein..