Jump to content
MakeWebGames

KyleCrispy

Members
  • Posts

    158
  • Joined

  • Last visited

    Never

Everything posted by KyleCrispy

  1. Re: Mod Discussion that mod is kinda easy and wont be a big one will just requiere a sql and umm 1 file :-) if u want i can make u one for $10 and if u want contact oxi for a much better one :lol:
  2. Re: [FREE]Music system thats why i neva put it in header i put it in main menu wich does not take long to load if you ask me but hey its a free lil thing to add to your site like loads of others aint it? :lol:
  3. Re: [FREE]Music system lost one it does work without error if you know what your doing!
  4. Re: [FREE]Music system Contact me on msn [email protected] ill help u
  5. Re: [v1] Updated Statistics Page when i say mines better mines better! and go look on www.bornkillah.com if u dont trust me
  6. Re: [v1] Updated Statistics Page i got to say my one is better tho and well all i need to add is the cities and the houses and mines the best
  7. Re: [mccode] View Donators here is for v2:   <?php /*----------------------------------------------------- kyles donator users -----------------------------------------------------*/ session_start(); include "globals.php"; print "<center> [b]<font color=red><h1>Donators</h1>[/b] <table width=75% border=1> <tr style='background:black'><th>User</th> <th>Level</th> <th>Money</th> <th>Donator days Left</th> <th><font color=white>Status</th> </tr>"; $q=mysql_query("SELECT * FROM users WHERE donatordays ORDER BY userid ASC",$c); while($r=mysql_fetch_array($q)) { if($r['laston'] >= time()-60*60) { $on="<font color=white>[b]Online[/b]</font>"; } else { $on="<font color=black>[b]Offline[/b]</font>"; } print "<tr> <td>[url='viewuser.php?u={$r[']<font color=red>[b]{$r['username']}[/b]</font>[/url] [{$r['userid']}]</td><td>{$r['level']}</td> <td>\${$r['money']}</td> <td>{$r['donatordays']}</td> <td>$on</td> </tr>"; } print "</table>"; $h->endpage(); ?>   aslong as you have session_start(); at the top no other parts need changing
  8. Re: Proposed Features for DBS/MCcodes Next Ver. i really dont think its gonna be unable to not let any illegals be out there unless dabs makes an agreement like with other ppl in chat so if the buyer goes and gives it out free dabs could recall the thing and the buyer must delete OR pay a fee but thats up to dabs
  9. Re: Proposed Features for DBS/MCcodes Next Ver. what he meant is suming like upgrades ur game automaticly correct me if im wrong dabs
  10. Re: [FREE]Music system well why dont u just stop saying this mods shit this mod turns ppl off bcoz all i see is ur ass bitchering all ova the place and if you dont like it then why post on it?
  11. Re: [FREE]Music system v2: create ur file called music.php and add <?php /*----------------------------------------------------- kyles music system please keep this block please do not try to resel this mod! -----------------------------------------------------*/ session_start(); include "globals.php"; switch($_GET['action']) { case 'music': do_music_change(); break; case 'music2': conf_music_change(); break; prefs_home(); break; } function prefs_home() { echo ""; } function do_music_change() { global $ir,$c,$userid,$h; print "Would You like to turn ur music "; if($ir['music']==0) { echo "<font color=red>[</font>[url='music.php?action=music2']on[/url]<font color=red>]</font>"; } if($ir['music']==1) { echo "<font color=red>[</font>[url='music.php?action=music2']off[/url]<font color=red>]</font>"; } } function conf_music_change() { global $ir,$c,$userid,$h; echo "Your music is now "; if($ir['music']==0) { echo "on"; $db->query("UPDATE users SET music=1 WHERE userid=$userid",$c); } if($ir['music']==1) { echo "off"; $db->query("UPDATE users SET music=0 WHERE userid=$userid",$c); } } $h->endpage(); ?> go to preferences and find [url='preferences.php?action=sigpchange']<font color=red>[</font>Signature Pic Change<font color=red>]</font>[/url] below that add <a href='music.php?action=music'><font color=red>[</font>Turn Your Music "; if($ir['music']==0) { echo "On"; } if($ir['music']==1) { echo "Off"; } echo "<font color=red>]</font></a>   run this sql: alter table users add music int(11) not null default 1 ;   now in header find $bgcolor= '#00000'; print <<<OUT befor that add if($ir['music']==1) { echo " <embed src='http://www.hot108.com/hot108jamz_tunein.asx' autostart='true' loop='true' width='0%' height='0'> </embed>"; }   and your done if you having problems contact me at [email protected] :D
  12. Re: [sB] Helper Bot i would say that arsons user shops has tons of bugs wich i exploited on a game wich didnt pay for a license :P
  13. Re: End page error DUDE of course if u dont know about the errors yet this one means its missing a } at the end Parse error: syntax error, unexpected $end in /home/atkscape/public_html/newcity.php on line 69 then u get others wich say unexpect } or missing a } or { but i do fucking know what this one means Parse error: syntax error, unexpected $end in /home/atkscape/public_html/newcity.php on line 69 SO SHUT UP and stop trying to exploit my game ok!
  14. Re: Left and right hand menu? i knew that one :wink: but ok my thing wich is the problem is i want to put my shout box on one side menu and my main menu on the other bug ok when i do it the shout box appears at the bottom of every page i have on my game :lol:
  15. Re: Left and right hand menu? that does not work :|
  16. Re: [mccode] Personal Detals for v2.0 dude u got so many stuff in here wich aint even required mine was a total of 10 lines on preferences and 12 lines on viewuser and 13 lines of sql and i was done
  17. Re: {Sorry But One More Help Needed } you have to add the sql u got for the honor market
  18. Re: Quick Help Please run this sql   alter table users add married int(11) not null ;
  19. Re: Qucik question not in header and my codes work not with out errors and they work perfect for me
  20. Re: End page error change this part: function new_city_sub() { global $ir, $c, $h, $userid; $_POST['cityminlevel']=abs((int) $_POST['cityminlevel']); mysql_query("INSERT INTO cities (cityname, citydesc, cityminlevel) VALUES ('{$_POST['cityname']}', '{$_POST['citydesc']}', '{$_POST['cityminlevel']}');", $c); print "[url='admin.php']> Back[/url]"; } $h->endpage(); ?> TO: function new_city_sub() { global $ir, $c, $h, $userid; $_POST['cityminlevel']=abs((int) $_POST['cityminlevel']); mysql_query("INSERT INTO cities (cityname, citydesc, cityminlevel) VALUES ('{$_POST['cityname']}', '{$_POST['citydesc']}', '{$_POST['cityminlevel']}');", $c); print "[url='admin.php']> Back[/url]"; } $h->endpage(); } ?>   If it re gives u the Parse error: syntax error, unexpected $end in /home/atkscape/public_html/newcity.php on line 68 error then add another } to this lil part   $h->endpage(); } ?>   just like Crazy-T Stated
  21. Re: Qucik question V2: if($r[user_level]==2 && $r[user_level]==3 $r[user_level]==5) { $db->query("update users set hospital=10, hospreason=Tried to attack a Staff player where userid=$userid",$c) or die(mysql_error()); echo "STAFF cannot be attacked"; } V1: if($r[user_level]==6 && $r[user_level]==3 $r[user_level]==5) { mysql_query("update users set hospital=10, hospreason=Tried to attack a Staff player where userid=$userid",$c) or die(mysql_error()); echo "STAFF cannot be attacked"; }   if you want to change the staff positions just change it here if($r[user_level]==6 && $r[user_level]==3 $r[user_level]==5)
  22. Re: If you do one thing today... not just a good password but try suming like this: E24jki/78ighik51-12 that will be unhackable but also hard to remmemba XD
  23. Re: Just An idea For V2 Codes pain ur wrong mccodes are NOT copyrighted and defo a 14-15 yr old can not copyright stuff ( i dont know if dabs is still 14 or now turned 15)
  24. Re: [FREE]Music system well i added it so ppl can have a lil addition :P
  25. Re: [FREE]Music system http://www.hot108.com/ there is all info ull need
×
×
  • Create New...