Jump to content
MakeWebGames

ADN

Members
  • Posts

    25
  • Joined

  • Last visited

ADN's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Re: [mccode v2] userADS :-( :-( :-(
  2. Re: Halloffame Playing up   $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 busts 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']} [url='viewuser.php?u={$r[']{$r['username']}[/url] [{$r['userid']}]$et</td> <td>$t".money_formatter($r['busts'],'')."$et</td> </tr>"; }
  3. Re: [v2] Faction with Armoury Works to me. Great job! If i found something else, i will tell you. Thanks!
  4. Re: [v2] Faction with Armoury Yes, thankyou. +1 from me! :) And one more thing :P Leave Faction < Fatal error: Call to undefined function leave_faction() in C:\wamp\www\game\manage_faction.php on line 36
  5. Re: [v2] Faction with Armoury The, you don't have all lines in manage_faction.php Here, those 3 lines missing. > Give Money / Points Fatal error: Call to undefined function give_vault() in C:\wamp\www\game\manage_faction.php on line 32 > Manage Apps Fatal error: Call to undefined function app_manage() in C:\wamp\www\game\manage_faction.php on line 52 > Kick Member Fatal error: Call to undefined function kick_member() in C:\wamp\www\game\manage_faction.php on line 56
  6. Re: [v2] Faction with Armoury There is no function defined for those 3 links :   > [url='manage_faction.php?step=give']Give Money / Points[/url] > [url='manage_faction.php?step=apps']Manage Apps[/url] > [url='manage_faction.php?step=kick']Kick Member[/url]
  7. Re: Crystal market exploit?   CREATE TABLE `cheater_catcher` ( `cc_id` int(11) NOT NULL auto_increment, `cc_userid` int(11) NOT NULL default '0', `cc_count` int(11) NOT NULL default '0', PRIMARY KEY (`cc_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;   Read all posts, then start using a script.
  8. Re: [mccode v2] Gym Same problem like with old gym.php : will goes down too much. $gain += mt_rand(1, 3) / mt_rand(500, 900) * mt_rand(500, 900) * (($will + 20) / 150); $will = max(0, $will - mt_rand(1, 3)); Instead of 1, 3 i put 0, 1. Takes me 7% from will, but another users (same level) goes to 50-60% will. How i change that? To take exactly (let's say 3%) ?
  9. Re: [mccode] Reset your users without deleating them -edited-
  10. Re: [mccode v2] Ignore User Mail Thankyou!
  11. Re: [mccode v2] Ignore User Mail If someone ignore a player, nobody is able to send him a mail. Where is the issue?
  12. ADN

    EXP% Cap

    Re: EXP% Cap And in attackwon.php & attacktake.php, what is your exp formula ?
  13. Re: Bar23 [V2] Ok, i got the point too. So is not a verry good ideea to user that code in my bar23.php. But how i get off of that looooong stat bar? :|
  14. Re: Bar23 [V2] Found it. I put in bar23.php, above globals.php : $query="UPDATE users SET brave=brave+((maxbrave/10)+0.5) WHERE brave<maxbrave "; $query2="UPDATE users SET brave=maxbrave WHERE brave>maxbrave"; $query3="UPDATE users SET hp=hp+(maxhp/3) WHERE hp<maxhp"; $query4="UPDATE users SET hp=maxhp WHERE hp>maxhp"; $db->query($query); $db->query($query2); $db->query($query3); $db->query($query4); //enerwill update $query="UPDATE users SET energy=energy+(maxenergy/(12.5)) WHERE energy<maxenergy AND donatordays=0"; $query5="UPDATE users SET energy=energy+(maxenergy/(6)) WHERE energy<maxenergy AND donatordays>0"; $query2="UPDATE users SET energy=maxenergy WHERE energy>maxenergy"; $query3="UPDATE users SET will=will+10 WHERE will<maxwill"; $query4="UPDATE users SET will=maxwill WHERE will>maxwill"; $db->query($query); $db->query($query5); $db->query($query2); $db->query($query3); $db->query($query4);
  15. Re: Bar23 [V2] http://img91.imageshack.us/my.php?image=xxxox8.jpg Still the same issue. Is not 28, now is 18 (with 0/5 brave)
×
×
  • Create New...