
Eternal
Members-
Posts
305 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Everything posted by Eternal
-
Re: [V2] Saved Events LOL. Here we go, another "coder" who thinks he's better than anyone else. It's slightly optimized, by using "union" queries and not creating a whole new table dedicated to a really small modification. I am limited to how much I can optimize it, as the engine doesn't have much options to it's optimization - it would be useless for me to even put that in. LOL!! LOL!!! Optimization at its finest :D
-
change colours without editing the pages [V2]
Eternal replied to Modern-Empires's topic in Requests & In Production
Re: change colours without editing the pages [V2] See now i put some code in here why don't you??????????? ????????????????????????????? ????????????????????????????? <?php if($ir['theme'] =="theme2") { $color[0] = "#change"; $color[1] = "#change"; $color[2] = "#change"; } else { $color[0] = "#change"; $color[1] = "#change"; $color[2] = "#change"; } echo <<<oef <style type="text/css"> .one { width: 100px; border: 1px black solid;; background: {$color[0]}; padding: 0px; height: 10px; } .two{ font-size: 10px; background: {$color[0]}; padding: 0px; height: 10px; } .three { background: {$color[1]}; border-bottom: 1px {$color[2]} solid; border-top: 1px {$color[2]} solid; padding-left: 8px; font-weight: bolder; } </style> oef; echo' <div class="one"> something put into here 1</div>'; echo' <div class="two"> something put into here 2</div>'; echo' <div class="three"> something put into here 3</div>'; ?> This is a modification section not a gloating section...... Stick with the rules........... -
Re: jail bust exp $exp = rand(1,10); $newexp=$exp*$ir['level']; $db->query(sprintf("UPDATE users SET exp = exp + %u WHERE (userid = %u), $newexp,$userid)); Gives them the chance to succeed. say level 50 has max 500 exp given and 1000 exp to level 100 since when you level 10 exp looks like nothing. why bust the person? maybe step the up rand(10,20) or so.... :)
-
Re: [mccode V2] Index.php Not to be an ass but isn't that what it is meant for? i my self post normally but on the occasion post in different colors...
-
Re: [mccode V2] Index.php You don't need the side menu. Right now i am working with static html divs and working up a way to show hide the div with bookmarks on the bottom " like a xp start bar instead of the showing what page,application is open it will show 4-5 bookmarks the user can set..
-
Re: Effects mod v2 umm. replace $damagatk = $attack_person['strength'] ; with $damagatk= $attack_person['strength'] * ($attack_person['modded_str']/100); basicly replace the guard and speed with what i provided using the correct values.
-
I just was reading a post in here and it said effects but it does nothing. Thought i would just write my own to help you all understand what an effects mod looks like :) drugs.php " if you rename it change the name at bottom of page. <?php include "globals.php"; if($_post['use']!="") { $posteffect= mysql_escape_string($_post['use']); $effect=$db->query(" SELECT * FROM effects WHERE effect=".$posteffect); $e1=mysql_fetch_row($effect); if(mysql_num_rows($e1) == 0) { echo ' You are off your head this drug don\'t exist!'; $h->endpage(); exit; } if($ir['effect_time'] >1){ echo ' You are already on drugs please come back soon!'; $h->endpage(); exit; } if($ir['money'] < $e1['price']){ echo ' You don\'t have enough cash to purchase'.$posteffect; $h->endpage(); exit; } $bonus1= $e1['strength']; $bonus2= $e1['defence']; $bonus3= $e1['speed']; $newmoney=$ir['money'] - $e1['price']; $ef_use=$db->query(" UPDATE users set effect=".$posteffect.", modded_str=".$bonus1.", modded_def=".$bonus2.", modded_spd=".$bonus3.", effect_time='25', money=".$newmoney." WHERE userid=".$ir['userid']); echo 'You successfully used'.$posteffect.'! Now go kill someone.'; $h->endpage(); exit; } }else { echo '<h1>Welcome to the local drug dealer</h1> What would you like to purchase today?'; print "<table width=100% > <tr> <th>Drug</th><th>Bonus Strength</th><th>Bonus Defence</th><th>Bonus Speed</th><th>Price</th><th>Buy</th></tr>"; $q=$db->query(" SELECT * FROM effects "); while($r=$db->fetch_row($q)) { print "<tr><td>{$r['effect']}</td> <td>{$r['strength']}%</td> <td>{$r['defence']}%</td><td>{$r['speed']}%</td> <td>{$r['price']}</td><td>[url='drugs.php?use={$r[']Buy[/url]</td> </tr>"; } print "</table>"; $h->endpage(); } ?> ^^^^^^^^^^^^^^ i haven't fully tested any of this script CREATE TABLE IF NOT EXISTS `effects` ( `ID` int(11) NOT NULL auto_increment, `effect` varchar(255) NOT NULL default '', `strength` int(11) NOT NULL default '1', `defence` int(11) NOT NULL default '1', `speed` int(11) NOT NULL default '1', `price` int(11) NOT NULL default '1', PRIMARY KEY (`ID`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; ALTER TABLE `users` ADD `modded_str` INT( 20 ) DEFAULT '1' NOT NULL ; ALTER TABLE `users` ADD `modded_spd` INT( 20 ) DEFAULT '1' NOT NULL ; ALTER TABLE `users` ADD `modded_def` INT( 20 ) DEFAULT '1' NOT NULL ; ALTER TABLE `users` ADD `effect` varchar(255) NOT NULL default ''; ALTER TABLE `users` ADD `effect_time` INT( 20 ) DEFAULT '0' NOT NULL ; attack modifications I use a different attack so i kinda left this out. the user attacking (modded_spd if($ir['effect_time'] >0) { $ir_modded_str= $ir['strength'] * ($ir['modded_str']/100); $ir_modded_str= $ir['agility'] * ($ir['modded_spd']/100); $ir_modded_def= $ir['guard'] * ($ir['modded_def']/100); } ) Defender( if($r['effect_time'] >0) { $r_modded_str= $r['strength'] * ($r['modded_str']/100); $ir_modded_str= $r['agility'] * ($ir['modded_spd']/100); $r_modded_def= $r['guard'] * ($r['modded_def']/100); } ) for header pages.... if($ir['effect_time'] >0) { echo "[b]Note: [/b] You are on ".$ir['effect']." for {$ir['effect_time']} minutes. "; } Cron edits cron_minute.php $db->query("update users set modded_str=1 , modded_spd=1 , modded_def=1 WHERE effect_time =0 "); $db->query("update users set effect_time=effect_time-1 WHERE effect_time >0 "); PLEASE LET ME KNOW IF THERE IS AN ERROR OR PROBLEM YOU CAN'T RESOLVE YOUR SELF :)
-
Re: protection mccodes v2 lol Your first step is http://www.php.net Second look up the variables http://php.net/mysql_escape_string http://php.net/strip_tags http://php.net/htmlentities no use securing $_POST and $_GET with out fixing $_SERVER['HTTP_X_FORWARDED_FOR'] to $_SERVER['REMOTE_ADDR']; as HTTP_X_FORWARDED_FOR can be spoofed to result in a sql injection place. anything using $_POST['input'] that goes to database can be manipulated to screw up your website. eg... $ip = ($_SERVER['HTTP_X_FORWARDED_FOR']) ? $_SERVER['HTTP_X_FORWARDED_FOR'] : $_SERVER['REMOTE_ADDR']; mysql_query("UPDATE users SET laston=unix_timestamp(),lastip='$ip' WHERE userid=$userid",$c); what i can do is put my facing ip as 1.1.1.1', user_level='2 Same thing with post variables $_post['crystals'] =1', user_level='2 $db->query("UPDATE users SET crystals='{$_post['crystals']}' WHERE userid=$userid"); Will result in attack
-
Re: New Header.php http://www.uhide.me/Screenshot-1.png
-
I have been testing new html styles and thought i would submit my test header i am working with. feel free to use it and update it some more :D <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <?php /******************** Eternal for CE users ********************/ class headers { function startheaders() { global $db,$c,$userid,$set,$ir; ?> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <link href="style.css" rel="stylesheet" type="text/css" /> <title>Your site name.</title> </head> <body> <style type="text/css"> .rghtbar { background-color: rgb(69, 66, 56); color: rgb(255, 206, 35); } .menu { text-align: center; border: 0px solid #FFFFFF; background: #e3f0f7; color:#000000; background-image:url('www.demo.com'); } </style> <div align="center" style="position:fixed;left:0px;bottom:0px;height:96%;width:9%;"> <div style="padding: 0px 0px 0px 0px;" class="style2"> <table width=111> <tr><td class=rghtbar> <?PHP include "mainmenu.php"; ?> </table> </div> </div> <div align="center" style="position:fixed;left:0px;bottom:0px;height:16px;width:11%;background-color:#cccccc;"class="rghtbar"> [url="/"]<font color="blue" size="3">Main Menu</font>[/url] </div> <div align="center" style="position:fixed;right:0px;bottom:0px;height:96%;width:12%;"> <div style="padding: 0px 0px 0px 0px;" class="style2"> <font class="content"> <table width='115' class='menu' > <th>Users</th> <?php $q=$db->query("SELECT * FROM users WHERE laston>(unix_timestamp()-15*60) ORDER BY laston DESC LIMIT 20"); if (!$db->num_rows($q)) { print"<tr><td class=rghtbar>No One</td></tr>"; } while($r=$db->fetch_row($q)) { $la=time()-$r['laston']; $unit="secs"; if($la >= 60) { $la=(int) ($la/60); $unit="mins"; } if($la >= 60) { $la=(int) ($la/60); $unit="hours"; if($la >= 24) { $la=(int) ($la/24); $unit="days"; } } print "<tr><td class=menu><center>[url='viewuser.php?u={$r['][size="1"]{$r['username']}[/size][/url]</center></td></tr>"; } ?> </font></table> </div> </div> <div align="center" style="position:fixed;right:0px;bottom:0px;height:16px;width:12%;background-color:#cccccc;"class="rghtbar"> [url="/"]<font color="blue" size="3">Users Online</font>[/url] </div> <div id="container">[img=images/header.png] <div id="header" align="center"><font color="gold" size="3" ></font></div> <div id="menu"> <ul class="e3"> [*][url="/?#demo"]Home[/url] [*][url="/?#demo"]Forums[/url] [*][url="/?#demo"]Members[/url] [*][url="/?#demo"]Staff[/url] [*][url="/?#demo"]Vote[/url] [*][url="/?#demo"]contact[/url] [/list]<table align="right" width="50%"><tbody><tr> <td style="font-size: 10px;" width="50%" height="100%"> <table> <tbody><tr> <td colspan="3" style="font-size: 10px;">[<?PHP echo $ir['userid']; ?>] <?PHP echo "[url='viewuser.php?u={$ir['][size="1"]{$ir['username']}[/size][/url]"; ?></td> </tr> <tr> <td style="font-size: 10px;color: #e3e4dc;"><font size="2">Level:</font></td> <td colspan="2" style="font-size: 10px;"><?PHP echo $ir['level']; ?></td> </tr> <tr> <td style="font-size: 10px;">Money:</td> <td colspan="2" style="font-size: 10px;"><?PHP echo money_formatter($ir['money']); ?></td> </tr> <tr> <td style="font-size: 10px;">Crystals:</td> <td style="font-size: 10px;"><?PHP echo $ir['crystals']; ?></td> <td style="font-size: 10px;">[[url="donate.php"]<font color="gold" size="2">buy</font>[/url]] [[url="crystaltemple.php"]<font color="gold" size="2">use</font>[/url]]</td> </tr> </tbody></table> </td> <td width="8px"> <?PHP $enperc=(int) ($ir['energy']/$ir['maxenergy']*100); $wiperc=(int) ($ir['will']/$ir['maxwill']*100); $experc=(int) ( $ir['exp']/$ir['exp_needed']*100); $brperc=(int) ($ir['brave']/$ir['maxbrave']*100); $hpperc=(int) ($ir['hp']/$ir['maxhp']*100); $enopp=100-$enperc; $wiopp=100-$wiperc; $exopp=100-$experc; $bropp=100-$brperc; $hpopp=100-$hpperc; echo <<<EOF2 <table width="92%"> <tr> <td style="font-size: 10px;" width="20%">[b]Energy: {$enperc}%[/b] [url='crystaltemple.php?spend=refill'][size="1"]<font color=yellow>[refill]</font>[/size][/url] <img src=greenbar.png width=$enperc height=5><img src=redbar.png width=$enopp height=5></td> <tr> <td style="font-size: 10px;" width="20%">[b]Will: {$wiperc}%[/b] </td> </tr> <tr> <td> <img src=bluebar.png width=$wiperc height=5><img src=redbar.png width=$wiopp height=5></td> </tr> <tr> <td style="font-size: 10px;" width="20%">[b]Brave: {$ir['brave']}/{$ir['maxbrave']} [/b]</td> </tr> <tr> <td> <img src=yellowbar.png width=$brperc height=5><img src=redbar.png width=$bropp height=5></td> </tr> <tr> <td style="font-size: 10px;" width="20%">[b]EXP: {$experc}% [/b]</td> </tr> <tr> <td> <img src=bluebar.png width=$experc height=5><img src=redbar.png width=$exopp height=5></td> </tr> <tr> <td style="font-size: 10px;" width="20%">[b]Health: {$hpperc}% [/b]</td> </tr> <tr> <td> <img src=greenbar.png width=$hpperc height=5><img src=redbar.png width=$hpopp height=5></td> </tr> </table> EOF2; ?> </td> </tr></tbody></table> <h1></h1> <h4>[b]Donator blah[/b].</h4> </div> <div id="main"> <div id="content" align="center" width='80%'> <table width='90%' cellpadding='1' cellspacing='0'> <tr> <?php $blinki=$_SERVER['SCRIPT_NAME']; $checklinki1=explode('.',$blinki); $checklinki2=explode('/',$checklinki1[0]); ?> <td class='head_text' colspan='3'><center><font style="color: #CCCC99;">Server Time: <?PHP echo date('g:i a'); ?></font></center> .: <?php echo $checklinki2[1]; ?></td> </tr> </table> <?php if($ir['hospital']) { print "<div id='err'>[b]Note: [/b] You are in the hospital for {$ir['hospital']} minutes.</div> "; } if($ir['jail']) { print "<div id='err'>[b]Note: [/b] You are in jail for {$ir['jail']} minutes.</div> "; } } function userdata($ir,$lv,$fm,$cm,$dosessh=1) { global $c,$userid; $ip = $_SERVER['REMOTE_ADDR']; mysql_query("UPDATE users SET laston=unix_timestamp(),lastip='$ip' WHERE userid=$userid",$c); if(!$ir['email']) { die ("<body>Your account may be broken. Please mail [email][email protected][/email] stating your username and player ID."); } $enperc=(int) ($ir['energy']/$ir['maxenergy']*100); $wiperc=(int) ($ir['will']/$ir['maxwill']*100); $experc=(int) ( $ir['exp']/$ir['exp_needed']*100); $brperc=(int) ($ir['brave']/$ir['maxbrave']*100); $hpperc=(int) ($ir['hp']/$ir['maxhp']*100); $enopp=100-$enperc; $wiopp=100-$wiperc; $exopp=100-$experc; $bropp=100-$brperc; $hpopp=100-$hpperc; if($ir['fedjail']) { $q=mysql_query("SELECT * FROM fedjail WHERE fed_userid=$userid",$c); $r=mysql_fetch_array($q); die("[b]<font color=red size=+1>You have been put in the Federal Jail for {$r['fed_days']} day(s). Reason: {$r['fed_reason']}</font>[/b]</body></html>"); } if(file_exists('ipbans/'.$ip)) { die("[b]<font color=red size=+1>Your IP has been banned, there is no way around this.</font>[/b]</body></html>"); } } function smenuarea() { global $ir,$c; $bgcolor = '#878787'; } function menuarea() { global $db,$c,$userid, $ir; echo' '; } //# //#Main content //# function endpage() { global $db,$c,$userid, $ir; echo <<<OEF3 <div class="clear"></div> </div> </div> <div id="footer"> [b]<font color="Gold" size="3">Advertisement banner</font>[/b] </div> OEF3; } } ?> </div> </body> </html> style.css body { background-image:url(images/background.gif); color: #000000; font-family: Arial, Helvetica, sans-serif, Verdana; font-size: 12px; margin: 0px; padding: 0px; } * {margin: 0px;padding: 0px;} .clear{clear:both;} .e3{ background-image:url(images/background.gif); color: #cccccc;} #container { margin: 0px auto; text-align: left; width: 780px; } a { color: #000000; font-family: Arial, Helvetica, sans-serif, Verdana; font-size: 12px; } /********************** Header ***************************/ #header { margin: 5px 0px 0px 0px; background-image:url(images/test.gif); background-repeat:no-repeat; width:768px; height:20px; } #menu { position:relative; background-image:url(images/menu.jpg); background-repeat:no-repeat; width:768px; height:117px; } #menu ul{ position:absolute; top:10px; left:15px; } #menu li{ float:left; display:inline; padding: 0px 0px 0px 10px; } #menu a{ font-family: Arial, Helvetica, sans-serif; font-size: 14px; font-weight: bolder; text-transform: uppercase; color: #d8cd8d; text-decoration: none; } #menu a:hover{ color:#3e3c27; } h1,h2,h3,h4 { font-family: Arial, Helvetica, sans-serif; font-size: 18px; font-weight: bolder; text-transform: uppercase; color: #171508; } h1,h2,h4 { position:absolute; top:94px; } h1 { left:25px; } h4 { left:276px; } h2 { left:665px; } h3 { margin: 15px 0px 0px 30px; border-bottom: solid 1px #625d3b; } /********************** Main ***************************/ #main { background-image:url(images/main_bg.gif); background-repeat: repeat-y; display:block; width:100%; height:auto; } #content { background-image:url(images/main_bg.gif); background-repeat: repeat-y; width:100%; } /********************** Left - Text ***************************/ #left { float:left; width:490px; } #left p{ padding: 5px 10px 10px 30px; } #left a:hover{color:#d8cd8d;} /********************** Right - Text ***************************/ #right { float:right; width:230px; } .member { display:inline; float:left; margin-left:10px; } .member a{ font-size: 12px; font-weight: bold; color: #f5f1d1; text-decoration: none; } .member img{ border: none 0px; } .member span{ display:block; text-align:center; padding: 2px 0px 13px 0px; text-transform: uppercase; } .member span a{} .member span a:hover{} /********************** Footer ***************************/ #footer { background-image:url(images/footer_bg.jpg); background-repeat:no-repeat; width:768px; height:97px; text-align:center; float:left; clear:both; } #footer ul{ } #footer li{ display:inline; float:none; text-align:center; padding: 0px 10px 0px 10px; border-right: solid 1px #908a68; } .lastchild{ border-right: 0px none !important; } #footer a{ font-family: Arial, Helvetica, sans-serif; font-size: 11px; font-weight: bold; text-transform:uppercase; color: #908a68; text-decoration: none; } #footer a:hover{text-decoration: underline;} #footer span{ font-size: 9px; font-weight: bold; color: #18160e; margin:60px; display:block; } [url]http://www.deadlyghetto.net/images/background.gif[/url] [url]http://www.deadlyghetto.net/images/test.gif[/url] [url]http://www.deadlyghetto.net/images/menu.jpg[/url] [url]http://www.deadlyghetto.net/images/main_bg.gif[/url] [url]http://www.deadlyghetto.net/images/footer_bg.jpg[/url] [url]http://www.deadlyghetto.net/images/header.png[/url] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ALL DEMO IMAGES FEEL FREE TO CHANGE IT ALL UP I haven't included the staff menu cause i don't use it....
-
Re: Website exploitation lol yer didn't see that lol. I been using this for a while now i could just tell everyone the way to activate it so all the games on the net get taken down :P
-
As from what some of you have found out anyone can take over your game in a matter of seconds no matter how you escape sql strings and protect it. I won't disclose the exact format on this but i will say alterting http headers to change X_Forwarded_for to "0.0.0.0',string='input of database feild" will just alter anything in the table your using to monitor ip's Changing X_Forwarded_for to getenv("REMOTE_ADDR") Will display the users correct ip rather than letting someone altering it. I know this isn't a mod but it is an alter of the mccode scripting so i would suggest doing the change before someone targets you next. Just altering tables isn't the only thing you can do.. So beware
-
[mccodes v2]street gangs [100$] just one copy
Eternal replied to rpg-style's topic in Paid Modifications
Re: [mccodes v2]street gangs [100$] just one copy While your asking him why not ask www.mafiacorruption.com -
Re: Stop people from using IE on website Using a html strict behavior on your css and html i have overcome this problem of your site looking "stupid" for IE. I have made many templates for my game to test the theory including many operating systems . I have tested the the layouts with a browsershot.com website and only have one browser that interpretate's them wrong which is not a common browser/operating system ... So using the correct way to code/design is more better than restricting a certain public Audience..
-
Re: Improved Staff Logs For V2 lol @ missed a few. I am sure people of today can learn a little sql and php inclusion. :P
-
Re: [Need]Sql Dump[Need] http://en.wikipedia.org/wiki/List_of_weapons now take the freaking time and stop being a useless piece of noobcake.
-
Re: gang city ownership I could code this but it won't be free. add me on msn for prices
-
Re: [mccode V2] Chat Mod NEW lawl when you upload chat.txt put a word like test in the text file and then chmod it to 755 or 777 or when it is loading it just sits on loading cause there is nothing to load.
-
Re: [Mccodes V2]Login Register, TOs- New Lmao a true noob leaves it there. how idiotic of the owner of the game. Just to note mysql_real_escape_string(strip_tags(title of message)) and body of message or depending on your php version ~> mysql_escape_string(strip_tags(title of message)) and body of message It is basicly a url re-direct that is on the forums.
-
Re: Donators List dude i see a banning of your account soon. Use the [ code ] tags
-
Re: Contact Staff Through Email um ok :D <?php /* -- Mobz Productions -- -- A Product of Mobz Productions -- -- For contacting game -- -- Created by M0B2 -- -- Contact.php -- */ print "Staff Contact form: /// ADDED "; TO CLOSE SECTION. if($_POST['mes']) { $to=Your Email Here; /// ADDED " AND " JUST TO MAKE IT NEAT EVEN THOUGH IT WILL GET UPDATED $subj = "Your Game Name Contact Form"; $mess =$_POST['mes']; $headers ="From: $_POST['email'] "; mail($to,$subj,$mess,$headers); } print "Your message has been sent to "Your Game Name Contact Email" You will get a reply as soon as posible. <a href='http://www.yourgameurl.com/index.php>Back to game...</a>"; ///CHANGED STARTING " TO ' SINCE YOU ////HAVE " YOUR GAME NAME" ALSO CHANGED THAT TO $TO AS YOU ALREADY DEFINED THE EMAIL } else { print "You are contacting Your Game Name game. /// CLOSED TAG <form action='contact.php' method='post'> /// STARTED NEW ECHO OR PRINT WITH ' QUOTATION CHANGED INLINE //DOUBLE QUOTES TO " Your Email: <input name="email" type="text" value="Your Email Here"> /// CHANGED TYPE TO HIDDEN AND REQUESTED //USER EMAIL FROM DATABASE SO THEY DON'T HAVE TO THINK <textarea cols=30 rows=15 name='mes'> </textarea> <input type='submit' value='Send!'></form>"; } $h->endpage(); ?>
-
Re: Contact Staff Through Email You forgot the code tags <?php include 'globals.php'; /* -- Mobz Productions -- -- A Product of Mobz Productions -- -- For contacting game -- -- Created by M0B2 -- -- Contact.php -- --Fixed by Eternal-- */ print "Staff Contact form: "; if($_POST['mes']!='') { $to="Your Email Here"; $subj = "Your Game Name Contact Form"; $mess =$_POST['mes']; $headers ="From: $_POST['email']"; mail($to,$subj,$mess,$headers); } print "Your message has been sent to $to You will get a reply as soon as posible. <a href='index.php>Back to game...</a>"; } else { print "You are contacting ".$set['game_name']." Via email. "; echo' <form action="contact.php" method="post"> <input name="email" type="hidden" value="'.$ir['email'].'"> <textarea cols=30 rows=15 name="mes"> </textarea> <input type="submit" value="Send!"></form>'; } $h->endpage(); ?> Also a few Errors but fixed,
-
Re: [mccode V2] Attack updated Seen working on www.deadlyghetto.net Attack based on ie. 1 weapon hit per round 2 weapons 2 hits per round
-
Re: installer question. lmao i had someone ask me the same question answer was mccodes.com
-
Re: [free] AJAX Notepad <?php echo ' <script src="Ajax.js" type="text/javascript"></script> <script> var url = "UpdateNotepad.php"; var what = "ReturnStatus(req.responseText)"; function UpdateNotepad() { var text = document.getElementById("Text").value; DoCallback("text="+text); } function ReturnStatus(Status){ document.getElementById("status").innerHTML = status; } </script> <div id="status">Please type in something</div> <textarea id="Text" rows="4" cols="40"></textarea> <input type="button" value="Update">'; ?> it is using var url = "UpdateNotepad.php"; to parse the data It is using Capitol Letters So i would replace the instance with non capitol letters