
Nicholas
Members-
Posts
467 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Everything posted by Nicholas
-
Re: hall of fame addon huh?
-
this is the voting page ive got for my game. call it voting.php <?php include "globals.php"; echo " <hr><font color=white>VOTING</font></hr> <table cellspacing='1' width=60% border='0' cellpadding='1' class='table'> <tr style='background:white'> <th>Site Name</th> <th>Website Link</th> <th>Rewards</th> <tr> <td>Apex Web Gaming</td> //change this to whatever voting site your gonna use <td>[url='voteawg.php']<font color=red>Vote at ApexWebGaming Now!</font>[/url]</td> //change the voteawg.php to whatever you called your voting link page as. <td>Money: 100</td> //change the money/crystals to whatever you set it as on the voteawg.php file for example. </tr> </table>"; $h->endpage(); ?> storing your voting link file. call it whatever you want just remember to change voteawg.php to whatever you called your file <?php session_start(); if(get_magic_quotes_gpc() == 0) { foreach($_POST as $k => $v) { $_POST[$k]=addslashes($v); } foreach($_GET as $k => $v) { $_GET[$k]=addslashes($v); } } require "global_func.php"; if($_SESSION['loggedin']==0) { header("Location: login.php");exit; } $userid=$_SESSION['userid']; include "config.php"; global $_CONFIG; define("MONO_ON", 1); require "class/class_db_{$_CONFIG['driver']}.php"; $db=new database; $db->configure($_CONFIG['hostname'], $_CONFIG['username'], $_CONFIG['password'], $_CONFIG['database'], $_CONFIG['persistent']); $db->connect(); $c=$db->connection_id; $is=$db->query("SELECT u.*,us.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid WHERE u.userid=$userid"); $ir=$db->fetch_row($is); $q=$db->query("SELECT * FROM votes WHERE userid=$userid AND list='awg'"); //change awg to something else on all the voting files you make if($db->num_rows($q)) { print "You have already voted at Apex Web Gaming today!"; //change Apex Web Gaming to the voting sites name } else { $db->query("INSERT INTO votes values ($userid,'awg')"); //change awg to the same letters as you done up about 10 lines $db->query("UPDATE users SET money=money+100 WHERE userid=$userid"); //change the money=money+100 to whatever you want it to be. money=money+?? or crystals=crystals+?? header("Location:http://apexwebgaming.com/in/4352"); //change the http to 4352 bit into your voting link code. exit; } ?> i put // comments on what you change when setting it up. :) hopefully you understand what i mean lol.
-
Re: hall of fame addon yer, i know that lol, ccs in header or a style.css file lol. but i only just found that out today. and ive had this hall of fame for while lol. so... well if anyone wants to use it. like i said feel free to take it lol.
-
hi, i desided to just post this up here, i a added on crimes and busts done, so if u wanna use it, feel free. <?php include "globals.php"; $filters=array( 'nodon' => 'AND donatordays=0', 'don' => 'AND donatordays > 0', 'all' => ''); $filter=(isset($filters[$_GET['filter']])) ? $_GET['filter'] : 'all'; $myf=$filters[$filter]; $bt1=($filter=="nodon") ? "[b]" : ""; $bet1=($filter=="nodon") ? "[/b]" : ""; $bt2=($filter=="don") ? "[b]" : ""; $bet2=($filter=="don") ? "[/b]" : ""; $bt3=($filter=="all") ? "[b]" : ""; $bet3=($filter=="all") ? "[/b]" : ""; print "<h1>Hall Of Fame</h1><hr /> Filter: [$bt1[url='halloffame.php?action={$_GET[']Non-Donators[/url]$bet1 | $bt2[url='halloffame.php?action={$_GET[']Donators[/url]$bet2 | $bt3[url='halloffame.php?action={$_GET[']All Users[/url]$bet3]<hr /> <table width=75% cellspacing=1 class='table'> <tr> <td>[url='halloffame.php?action=level&filter={$filter}']Level[/url]</td> <td>[url='halloffame.php?action=money&filter={$filter}']Money[/url]</td> <td>[url='halloffame.php?action=respect&filter={$filter}']Respect[/url]</td> <td>[url='halloffame.php?action=crystals&filter={$filter}']Crystals[/url]</td> <td>[url='halloffame.php?action=total&filter={$filter}']Total Stats[/url]</td> <td>[url='halloffame.php?action=crimesdone&filter={$filter}']Crimes Done[/url]</td></tr><tr> <td>[url='halloffame.php?action=strength&filter={$filter}']Strength[/url]</td> <td>[url='halloffame.php?action=agility&filter={$filter}']Agility[/url]</td> <td>[url='halloffame.php?action=guard&filter={$filter}']Guard[/url]</td> <td>[url='halloffame.php?action=labour&filter={$filter}']Labour[/url]</td> <td>[url='halloffame.php?action=iq&filter={$filter}']IQ[/url]</td> <td>[url='halloffame.php?action=bustdone&filter={$filter}']Busts Done[/url]</td></tr></table>"; switch($_GET['action']) { case "level": hof_level(); break; case "money": hof_money(); break; case "crystals": hof_crystals(); break; case "respect": hof_respect(); break; case "total": hof_total(); break; case "strength": hof_strength(); break; case "agility": hof_agility(); break; case "guard": hof_guard(); break; case "labour": hof_labour(); break; case "iq": hof_iq(); break; case "crimesdone": hof_crimesdone(); break; case "bustdone": hof_bustdone(); break; } function hof_level() { global $db,$ir,$c,$userid, $myf; print "Showing the 20 users with the highest levels <table width=75% cellspacing=1 class='table'><tr style='background:gray'> <th>Pos</th> <th>User</th> <th>Level</th> </tr>"; $q=$db->query("SELECT u.*,g.* FROM users u LEFT JOIN gangs g ON g.gangID=u.gang WHERE u.user_level != 0 $myf ORDER BY level DESC,userid ASC LIMIT 20"); $p=0; while($r=$db->fetch_row($q)) { $p++; if($r['userid'] == $userid) { $t="[b]";$et="[/b]"; } else { $t="";$et=""; } print "<tr> <td>$t$p$et</td> <td>$t{$r['gangPREF']} {$r['username']} [{$r['userid']}]$et</td> <td>$t{$r['level']}$et</td> </tr>"; } print "</table>"; } function hof_money() { global $db,$ir,$c,$userid, $myf; print "Showing the 20 users with the highest amount of money <table width=75% cellspacing=1 class='table'><tr style='background:gray'> <th>Pos</th> <th>User</th> <th>Money</th> </tr>"; $q=$db->query("SELECT u.*,g.* FROM users u LEFT JOIN gangs g ON g.gangID=u.gang WHERE u.user_level != 0 $myf ORDER BY money DESC,userid ASC LIMIT 20"); $p=0; while($r=$db->fetch_row($q)) { $p++; if($r['userid'] == $userid) { $t="[b]";$et="[/b]"; } else { $t="";$et=""; } print "<tr> <td>$t$p$et</td> <td>$t{$r['gangPREF']} {$r['username']} [{$r['userid']}]$et</td> <td>$t\$".money_formatter($r['money'],'')."$et</td> </tr>"; } print "</table>"; } function hof_crystals() { global $db,$ir,$c,$userid, $myf; print "Showing the 20 users with the highest amount of knifes <table width=75% cellspacing=1 class='table'><tr style='background:gray'> <th>Pos</th> <th>User</th> <th>Knifes</th> </tr>"; $q=$db->query("SELECT u.*,g.* FROM users u LEFT JOIN gangs g ON g.gangID=u.gang WHERE u.user_level != 0 $myf ORDER BY crystals DESC,userid ASC LIMIT 20"); $p=0; while($r=$db->fetch_row($q)) { $p++; if($r['userid'] == $userid) { $t="[b]";$et="[/b]"; } else { $t="";$et=""; } print "<tr> <td>$t$p$et</td> <td>$t{$r['gangPREF']} {$r['username']} [{$r['userid']}]$et</td> <td>$t".money_formatter($r['crystals'],'')."$et</td> </tr>"; } print "</table>"; } function hof_respect() { global $db,$ir,$c,$userid; print "Showing the 20 gangs with the highest amount of respect <table width=75% cellspacing=1 class='table'><tr style='background:gray'> <th>Pos</th> <th>Gang</th> <th>Respect</th> </tr>"; $q=$db->query("SELECT * FROM gangs ORDER BY gangRESPECT DESC,gangID ASC LIMIT 20"); $p=0; while($r=$db->fetch_row($q)) { $p++; if($r['gangID'] == $ir['gang']) { $t="[b]";$et="[/b]"; } else { $t="";$et=""; } print "<tr> <td>$t$p$et</td> <td>$t{$r['gangNAME']} [{$r['gangID']}]$et</td> <td>$t".money_formatter($r['gangRESPECT'],'')."$et</td> </tr>"; } print "</table>"; } function hof_total() { global $db,$ir,$c,$userid, $myf; print "Showing the 20 users with the highest total stats <table width=75% cellspacing=1 class='table'><tr style='background:gray'> <th>Pos</th> <th>User</th> </tr>"; $q=$db->query("SELECT u.*,g.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid LEFT JOIN gangs g ON g.gangID=u.gang WHERE u.user_level != 0 $myf ORDER BY (us.strength+us.agility+us.guard+us.labour+us.IQ) DESC,u.userid ASC LIMIT 20"); $p=0; while($r=$db->fetch_row($q)) { $p++; if($r['userid'] == $ir['userid']) { $t="[b]";$et="[/b]"; } else { $t="";$et=""; } print "<tr> <td>$t$p$et</td> <td>$t{$r['gangPREF']} {$r['username']} [{$r['userid']}]$et</td> </tr>"; } print "</table>"; } function hof_strength() { global $db,$ir,$c,$userid, $myf; print "Showing the 20 users with the highest strength <table width=75% cellspacing=1 class='table'><tr style='background:gray'> <th>Pos</th> <th>User</th> </tr>"; $q=$db->query("SELECT u.*,g.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid LEFT JOIN gangs g ON g.gangID=u.gang WHERE u.user_level != 0 $myf ORDER BY us.strength DESC,u.userid ASC LIMIT 20"); $p=0; while($r=$db->fetch_row($q)) { $p++; if($r['userid'] == $ir['userid']) { $t="[b]";$et="[/b]"; } else { $t="";$et=""; } print "<tr> <td>$t$p$et</td> <td>$t{$r['gangPREF']} {$r['username']} [{$r['userid']}]$et</td> </tr>"; } print "</table>"; } function hof_agility() { global $db,$ir,$c,$userid, $myf; print "Showing the 20 users with the highest agility <table width=75% cellspacing=1 class='table'><tr style='background:gray'> <th>Pos</th> <th>User</th> </tr>"; $q=$db->query("SELECT u.*,g.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid LEFT JOIN gangs g ON g.gangID=u.gang WHERE u.user_level != 0 $myf ORDER BY us.agility DESC,u.userid ASC LIMIT 20"); $p=0; while($r=$db->fetch_row($q)) { $p++; if($r['userid'] == $ir['userid']) { $t="[b]";$et="[/b]"; } else { $t="";$et=""; } print "<tr> <td>$t$p$et</td> <td>$t{$r['gangPREF']} {$r['username']} [{$r['userid']}]$et</td> </tr>"; } print "</table>"; } function hof_guard() { global $db,$ir,$c,$userid, $myf; print "Showing the 20 users with the highest guard <table width=75% cellspacing=1 class='table'><tr style='background:gray'> <th>Pos</th> <th>User</th> </tr>"; $q=$db->query("SELECT u.*,g.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid LEFT JOIN gangs g ON g.gangID=u.gang WHERE u.user_level != 0 $myf ORDER BY us.guard DESC,u.userid ASC LIMIT 20"); $p=0; while($r=$db->fetch_row($q)) { $p++; if($r['userid'] == $ir['userid']) { $t="[b]";$et="[/b]"; } else { $t="";$et=""; } print "<tr> <td>$t$p$et</td> <td>$t{$r['gangPREF']} {$r['username']} [{$r['userid']}]$et</td> </tr>"; } print "</table>"; } function hof_labour() { global $db,$ir,$c,$userid, $myf; print "Showing the 20 users with the highest labour <table width=75% cellspacing=1 class='table'><tr style='background:gray'> <th>Pos</th> <th>User</th> </tr>"; $q=$db->query("SELECT u.*,g.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid LEFT JOIN gangs g ON g.gangID=u.gang WHERE u.user_level != 0 $myf ORDER BY us.labour DESC,u.userid ASC LIMIT 20"); $p=0; while($r=$db->fetch_row($q)) { $p++; if($r['userid'] == $ir['userid']) { $t="[b]";$et="[/b]"; } else { $t="";$et=""; } print "<tr> <td>$t$p$et</td> <td>$t{$r['gangPREF']} {$r['username']} [{$r['userid']}]$et</td> </tr>"; } print "</table>"; } function hof_iq() { global $db,$ir,$c,$userid, $myf; print "Showing the 20 users with the highest IQ <table width=75% cellspacing=1 class='table'><tr style='background:gray'> <th>Pos</th> <th>User</th> </tr>"; $q=$db->query("SELECT u.*,g.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid LEFT JOIN gangs g ON g.gangID=u.gang WHERE u.user_level != 0 $myf ORDER BY us.IQ DESC,u.userid ASC LIMIT 20"); $p=0; while($r=$db->fetch_row($q)) { $p++; if($r['userid'] == $ir['userid']) { $t="[b]";$et="[/b]"; } else { $t="";$et=""; } print "<tr> <td>$t$p$et</td> <td>$t{$r['gangPREF']} {$r['username']} [{$r['userid']}]$et</td> </tr>"; } print "</table>"; } function hof_crimesdone() { global $db,$ir,$c,$userid, $myf; print "Showing the 20 users with the highest crimes done <table width=75% cellspacing=1 class='table'><tr style='background:gray'> <th>Pos</th> <th>User</th> <th>Crimes Done</th> </tr>"; $q=$db->query("SELECT u.*,g.* FROM users u LEFT JOIN gangs g ON g.gangID=u.gang WHERE u.user_level != 0 $myf ORDER BY crimesdone DESC,userid ASC LIMIT 20"); $p=0; while($r=$db->fetch_row($q)) { $p++; if($r['userid'] == $userid) { $t="[b]";$et="[/b]"; } else { $t="";$et=""; } print "<tr> <td>$t$p$et</td> <td>$t{$r['gangPREF']} {$r['username']} [{$r['userid']}]$et</td> <td>$t{$r['crimesdone']}$et</td> </tr>"; } print "</table>"; } function hof_bustdone() { global $db,$ir,$c,$userid, $myf; print "Showing the 20 users with the highest busts done <table width=75% cellspacing=1 class='table'><tr style='background:gray'> <th>Pos</th> <th>User</th> <th>Busts Done</th> </tr>"; $q=$db->query("SELECT u.*,g.* FROM users u LEFT JOIN gangs g ON g.gangID=u.gang WHERE u.user_level != 0 $myf ORDER BY bustdone DESC,userid ASC LIMIT 20"); $p=0; while($r=$db->fetch_row($q)) { $p++; if($r['userid'] == $userid) { $t="[b]";$et="[/b]"; } else { $t="";$et=""; } print "<tr> <td>$t$p$et</td> <td>$t{$r['gangPREF']} {$r['username']} [{$r['userid']}]$et</td> <td>$t{$r['bustdone']}$et</td> </tr>"; } print "</table>"; } $h->endpage(); ?> add to phpmyadmin database ALTER TABLE `users` ADD `crimesdone` int(11) NOT NULL ; ALTER TABLE `users` ADD `bustdone` int(11) NOT NULL ; in docrime.php find mysql_query("UPDATE users SET money={$ir['money']}, crystals={$ir['crystals']}, exp={$ir['exp']},crimexp=crimexp+{$r['crimeXP']} WHERE userid=$userid",$c); and under it add mysql_query("UPDATE users SET crimesdone=crimesdone+1 WHERE userid=$userid",$c); in jailbust.php find $db->query("UPDATE users SET crimexp=crimexp+{$gain} WHERE userid=$userid"); and under it add mysql_query("UPDATE users SET bustdone=bustdone+1 WHERE userid=$userid",$c); in jailbail.php find $db->query("UPDATE users SET money=money-{$cost} WHERE userid=$userid"); and under it add mysql_query("UPDATE users SET bustdone=bustdone+1 WHERE userid=$userid",$c);
-
who makes cheap and good layouts/templates?
Nicholas replied to Nicholas's topic in General Discussion
Re: who makes cheap and good layouts/templates? dont have that sort of money for a layout :( isnt there any cheaper ones? -
hi, im wondering, who can make good looking 1 of a kind templates/layouts? like mainmenu/header. anyone know?
-
Re: urgent question ive acturally put $IP = $_SERVER['REMOTE_ADDR']; $IP = mysql_real_escape_string($IP); on all the parts with them 3 lines.
-
yesterday the item adding/creating worked, but today some reason i get this query error, any idea why? QUERY ERROR: Column count doesn't match value count at row 1 Query was INSERT INTO items VALUES('',3,'Brave Potion','refills brave by 100%',0,0,1, '1', 'a:4:{s:4:\"stat\";s:5:\"brave\";s:3:\"dir\";s:3:\"pos\";s:8:\"inc_type\";s:7:\"percent\";s:10:\"inc_amount\";i:100;}', '0', 'a:4:{s:4:\"stat\";s:6:\"energy\";s:3:\"dir\";s:3:\"pos\";s:8:\"inc_type\";s:6:\"figure\";s:10:\"inc_amount\";i:0;}', '0', 'a:4:{s:4:\"stat\";s:6:\"energy\";s:3:\"dir\";s:3:\"pos\";s:8:\"inc_type\";s:6:\"figure\";s:10:\"inc_amount\";i:0;}', 0, 0) can anyone figure out why this is happening?
-
Re: urgent question yes i know its firefox that making my game get hacked lol, and ive already done that $IP = $_SERVER['REMOTE_ADDR']; on register, header, login, etc. idk guys getting my MD5 passwords and cracking them with a program and logging onto our accounts, and idk how to stop it.
-
i know ive asked alot questions, but is there any way to make it so u can only play my game on Internet Explore and not FireFox and Internet Explore, as in past 1 week, ive been hacked about 10+ times (no ones messed with my files or took me off staff tho), ive secured my game best i can with $_GET['ID'] = abs(@intval($_GET['ID'])); that has {$_GET['ID']}"); in the file, but people can still get in my game, and its p-ing me off. can anyone tell me another addon for security or how to make it so players can only play my game on Internet Explore? Thanks, Nicholas.
-
Re: how do you do a drop down menu? yep thx, ill try and convert it into my donation page.
-
Re: MCCodes V2 Installation problem thats techincally what i said...
-
Re: MCCodes V2 Installation problem but if it works, wouldnt it be worth it?
-
Re: MCCodes V2 Installation problem ok let me try and say it in a list on how i done it. not sure if it work tho, but its worth a try i guess 1. backup your dbdata.sql file and save it on your desktop 2. select your whole database and drop it 3. go to www.yourgamename.???/installer.php 4. make sure you acturally have set up mysql database up and have put the information in the config.php file, there should be 11 lines down on your config.php file. 5. put the information in your installer.php bit, that the config.php file information has, and click submit when thats done, and hopefully your game should install. 6. if it installs at the bottom u see some coding for the cron jobs they should look like this */5 * * * * curl [url]http://yourgamename.???/cron_fivemins.php?code=numbers[/url] and letters there should be like 4 of them, copy them all and save them onto a notepad or whatever you have and save that information on your desktop or where ever you want. 7. log into your game and see if it works, then if it does go into your public_html folder and delete installer.php so no one can use it and make a admin account if they know your config.php file details. 8. then go onto your phpmyadmin and import the dbdata.sql file on your desktop or whereever you saved it. 9. then you should be all set up. hopefully ive said everything i done.
-
Re: MCCodes V2 Installation problem have u tried my way yet?
-
Re: help on fields? u know the sql information u got to type into the sql box to create a table for users or a actural table, i dont get how to add it onto the actural database and not into the users database bit, as this is the only sql information i know ALTER TABLE `users` ADD `************` int(11) NOT NULL ; ******** <--- you type whatever you want in there like ALTER TABLE `users` ADD `rescues` int(11) NOT NULL ;
-
Re: does anyone have it? oh thx, but i dont need one anymore, i got 1 from a friend i met of another game :) ill find out how to give you +1 for your generousity tho. :)
-
Re: MCCodes V2 Installation problem i had the same problem, if i deleted the applications from phpmyadmin database thing, i got the same message but with announcements. if i remember correctly i exported the sql files and saved them on my desktop, then i deleted all the databases, and then i used the installer.php again and it worked, i saved the cron job information i got at the bottom of the page onto a notepad and saved that onto my desktop as u will need it, then i imported the sql file you saved on phpmyadmin to create all the databases again. and logged on. sorry if its confusing, i hope it works and helps.
-
Re: help on fields? what do u mean danny696?
-
Re: help on fields? hmm... didnt really think about that... thx for the tip... but i have learned how to code some php files and etc to make the errors and etc go, but not fully but i did self teach myself pretty well, but i just dont get how to do the phpmyadmin database stuff. its abit confusing.
-
hi im wonder can anyone give me their phpmyadmin sql information fields for crimesdone and bustdone at all please? it just shows crimes done: 0 busts done: 0 and i found out why but idk how to make the fields in phpmyadmin bit.
-
Re: how do you do a drop down menu? not sure.. let me see if i can explain it, there is these lines saying: Donator Packs <-- if you click here it open up, and you can see all the donator packs you can buy Donator Pack 1 for ?? Donator Pack 2 for ?? Donator Pack 3 for ?? Donator Pack 4 for ?? Donator Pack 5 for ?? Crystals <--- if you click here it open up, and you can see all the crystal packs you can buy 5000 crystals for ?? 4000 crystals for ?? 3000 crystals for ?? 2000 crystals for ?? 1000 crystals for ?? and so on.
-
how do you do a drop down menu with say this donator page? [b]DP 1[/b]<ul> [*]\$5,000 game money [*]50 crystals [*]50 IQ, the hardest stat to get in the game! [*]30 days Donator Status: Red name + cross next to your name [*][b]NEW![/b] Friend and Black Lists [*][b]NEW![/b] 17% Energy every 5 mins instead of 8%[/list] <form action="https://www.paypal.com/cgi-bin/webscr" method="post"> <input type=hidden name=cmd value=_xclick> <input type="hidden" name="business" value="[email protected]"> <input type="hidden" name="item_name" value="Your Game Name Donation for ($userid) (Pack 1)"> <input type="hidden" name="amount" value="3.00"> <input type="hidden" name="no_shipping" value="1"> <input type="hidden" name="return" value="http://yourgameurl.com/donatordone.php?action=done&type=standard"> <input type="hidden" name="cancel_return" value="http://yourgameurl.com/donatordone.php?action=cancel"> <input type="hidden" name="cn" value="Your Player ID"> <input type="hidden" name="currency_code" value="USD"> <input type="hidden" name="tax" value="0"> <input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but21.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"> </form> [b]DP 2[/b]<ul> [*]100 crystals [*]30 days Donator Status: Red name + cross next to your name [*][b]NEW![/b] Friend and Black Lists [*][b]NEW![/b] 17% Energy every 5 mins instead of 8%[/list] <form action="https://www.paypal.com/cgi-bin/webscr" method="post"> <input type="hidden" name="cmd" value="_xclick"> <input type="hidden" name="business" value="[email protected]"> <input type="hidden" name="item_name" value="Your Game Name Donation for ($userid) (Pack 2)"> <input type="hidden" name="amount" value="3.00"> <input type="hidden" name="no_shipping" value="1"> <input type="hidden" name="return" value="http://yourgameurl.com/donatordone.php?action=done&type=crystals"> <input type="hidden" name="cancel_return" value="http://yourgameurl.com/donatordone.php?action=cancel"> <input type="hidden" name="cn" value="Your Player ID"> <input type="hidden" name="currency_code" value="USD"> <input type="hidden" name="tax" value="0"> <input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but21.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"> </form> [b]DP 3[/b]<ul> [*]120 IQ, the hardest stat to get in the game! [*]30 days Donator Status: Red name + cross next to your name [*][b]NEW![/b] Friend and Black Lists [*][b]NEW![/b] 17% Energy every 5 mins instead of 8%[/list] <form action="https://www.paypal.com/cgi-bin/webscr" method="post"> <input type="hidden" name="cmd" value="_xclick"> <input type="hidden" name="business" value="[email protected]"> <input type="hidden" name="item_name" value="Your Game Name Donation for ($userid) (Pack 3)"> <input type="hidden" name="amount" value="3.00"> <input type="hidden" name="no_shipping" value="1"> <input type="hidden" name="return" value="http://yourgameurl.com/donatordone.php?action=done&type=iq"> <input type="hidden" name="cancel_return" value="http://yourgameurl.com/donatordone.php?action=cancel"> <input type="hidden" name="cn" value="Your Player ID"> <input type="hidden" name="currency_code" value="USD"> <input type="hidden" name="tax" value="0"> <input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but21.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"> </form> [b]DP 4[/b]<ul> [*]\$15,000 game money [*]75 crystals [*]80 IQ, the hardest stat to get in the game! [*]55 days Donator Status: Red name + cross next to your name [*][b]NEW![/b] Friend and Black Lists [*][b]NEW![/b] 17% Energy every 5 mins instead of 8%[/list] <form action="https://www.paypal.com/cgi-bin/webscr" method="post"> <input type="hidden" name="cmd" value="_xclick"> <input type="hidden" name="business" value="[email protected]"> <input type="hidden" name="item_name" value="Your Game Name Donation for ($userid) (Pack 4)"> <input type="hidden" name="amount" value="5.00"> <input type="hidden" name="no_shipping" value="1"> <input type="hidden" name="return" value="http://yourgameurl.com/donatordone.php?action=done&type=fivedollars"> <input type="hidden" name="cancel_return" value="http://yourgameurl.com/donatordone.php?action=cancel"> <input type="hidden" name="cn" value="Your Player ID"> <input type="hidden" name="currency_code" value="USD"> <input type="hidden" name="tax" value="0"> <input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but21.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"> </form> [b]DP 5[/b]<ul> [*]\$35,000 game money [*]160 crystals [*]180 IQ, the hardest stat to get in the game! [*]A free Rifle valued at \$25,000 [*]115 days Donator Status: Red name + cross next to your name [*][b]NEW![/b] Friend and Black Lists [*][b]NEW![/b] 17% Energy every 5 mins instead of 8%[/list] <form action="https://www.paypal.com/cgi-bin/webscr" method="post"> <input type="hidden" name="cmd" value="_xclick"> <input type="hidden" name="business" value="[email protected]"> <input type="hidden" name="item_name" value="Your Game Name Donation for ($userid) (Pack 5)"> <input type="hidden" name="amount" value="10.00"> <input type="hidden" name="no_shipping" value="1"> <input type="hidden" name="return" value="http://yourgameurl.com/donatordone.php?action=done&type=tendollars"> <input type="hidden" name="cancel_return" value="http://yourgameurl.com/donatordone.php?action=cancel"> <input type="hidden" name="cn" value="Your Player ID"> <input type="hidden" name="currency_code" value="USD"> <input type="hidden" name="tax" value="0"> <input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but21.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"> </form> can anyone help me please? i want all them DP's in 1 drop down menu. and i know there is some the coding missing, i took it off since ill only really be editing that bit lol.
-
does anyone have a shoutbox.php file and if they do can you please tell me it and how to set it up please? i have searched this whole forum but cant find it.
-
why dont i get any events when sending crystals or money?
Nicholas replied to Nicholas's topic in General Discussion
Re: why dont i get any events when sending crystals or money? ahhh right, ill take a look, i just found out i dont get a event for anything lol.