thebobby
Members-
Posts
171 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Everything posted by thebobby
-
Any body know the function code for classes for clean
thebobby replied to thebobby's topic in GRPG Support
if ($_POST['submit'] != ""){ $_POST['changedesc'] = Clean($_POST['changedesc']); get this when trying to change banner Fatal error: Call to undefined function Clean() in /home/blaz1986/public_html/banner.php on line 10 -
Fatal error: Call to undefined function Clean() in /home/blaz1986/public_html/banner.php on line 10
-
its simple mccode has it u go to city page click battle tent u can fight bots"fake mobster" for exp and little money.
-
i will need codes for the bots basically
-
as in u go in to a page and u attack random bots"fake ppl"
-
budget is cheap ,but depends on what u are doing. it would be easier if you said i do this mod for x amount of dollars i say ok or cant afford.
-
grpg marriage,equipment loan for gangs, npc system
-
thanks guys its cool
-
if (post::is_helpful()) reputation::add(); else constructive_criticism::write(); Fatal error: Class 'post' not found in /home//public_html/editgang.php on line 10
-
yes understand that<. =color iit doesnt work nomatter how u put it
-
i need help with bbcodes// example <color>should br red<*/color = red> but will not be red after * this is taken out. even with Grpg format also need help with gang wars wont add respect for gang members that in battle. and pet leash.
-
looking for marriage and gang loan option
-
how much for designs like login page
-
does anybody do that or have marriage code for grpg and armory loan/gang weapon loan
-
can mccode be converted to grpg
-
wat fixes that as game did work and then was threaten to be hacked because it was raven code which i purchased mccode license.
-
this is one of the files u can download General Info "; $exp=(int)($ir['exp']/$ir['exp_needed']*100); print " Name: {$ir['username']} Points: {$cm} Level: {$ir['level']} Exp: {$exp}% Money: $fm Gang: "; $qs=$db->query("SELECT * FROM gangs WHERE gangID={$ir['gang']}"); $rs=$db->fetch_row($qs); if(!$db->num_rows($qs) ) { print "No Gang"; } else { print" {$rs['gangNAME']} "; } print " Property: {$ir['hNAME']} Days Old: {$ir['daysold']} Health: {$ir['hp']}/{$ir['maxhp']} Energy: {$ir['energy']}/{$ir['maxenergy']} Nerve: {$ir['brave']}/{$ir['maxbrave']} Awake: {$ir['will']}/{$ir['maxwill']} "; print " Status Info "; $ts=$ir['strength']+$ir['agility']+$ir['guard']+$ir['labour']+$ir['robskill']+$ir['IQ']; $ir['strank']=get_rank($ir['strength'],'strength'); $ir['agirank']=get_rank($ir['agility'],'agility'); $ir['guarank']=get_rank($ir['guard'],'guard'); $ir['labrank']=get_rank($ir['labour'],'labour'); $ir['robrank']=get_rank($ir['robskill'],'robskill'); $ir['IQrank']=get_rank($ir['IQ'],'IQ'); $tsrank=get_rank($ts,'strength+agility+guard+labour+IQ'); $ir['strength']=number_format($ir['strength']); $ir['agility']=number_format($ir['agility']); $ir['guard']=number_format($ir['guard']); $ir['labour']=number_format($ir['labour']); $ir['robskill']=number_format($ir['robskill']); $ir['IQ']=number_format($ir['IQ']); $ts=number_format($ts); print " Stat Amount Rank Strength {$ir['strength']} Rank: {$ir['strank']} Agility {$ir['agility']} Rank: {$ir['agirank']} Guard {$ir['guard']} Rank: {$ir['guarank']} Labour {$ir['labour']} Rank: {$ir['labrank']} Rob Skill {$ir['robskill']} Rank: {$ir['robrank']} IQ {$ir['IQ']} Rank: {$ir['IQrank']} Total Stats: {$ts} Rank: $tsrank "; $attacks_won = $db->query(sprintf('SELECT COUNT(`log_id`) AS attacking_won FROM `attacklogs` WHERE `attacker` = %u AND `result` = "%s"', $userid, 'won')); $attacks_wonc = $db->fetch_row($attacks_won); $attacks_lost = $db->query(sprintf('SELECT COUNT(`log_id`) AS attacking_lost FROM `attacklogs` WHERE `attacker` = %u AND `result` = "%s"', $userid, 'lost')); $attacks_lostc = $db->fetch_row($attacks_lost); if ($attacks_lostc['attacking_lost']) { $attacking_perl = $attacks_lostc['attacking_lost'] / ($attacks_wonc['attacking_won'] + $attacks_lostc['attacking_lost']) * 100; } elseif (!$attacks_lostc['attacking_lost']) { $attacking_perl = 0; } if ($attacks_wonc['attacking_won']) { $attacking_perw = $attacks_wonc['attacking_won'] / ($attacks_wonc['attacking_won'] + $attacks_lostc['attacking_lost']) * 100; } elseif (!$attacks_wonc['attacking_won']) { $attacking_perw = 0; } $attacksd_won = $db->query(sprintf('SELECT COUNT(`log_id`) AS defending_won FROM `attacklogs` WHERE `attacked` = %u AND `result` = "%s"', $userid, 'lost')); $attacksd_wonc = $db->fetch_row($attacksd_won); $attacksd_lost = $db->query(sprintf('SELECT COUNT(`log_id`) AS defending_lost FROM `attacklogs` WHERE `attacked` = %u AND `result` = "%s"', $userid, 'won')); $attacksd_lostc = $db->fetch_row($attacksd_lost); if ($attacksd_lostc['defending_lost']) { $defending_perl = $attacksd_lostc['defending_lost'] / ($attacksd_wonc['defending_won'] + $attacksd_lostc['defending_lost']) * 100; } elseif (!$attacksd_lostc['defending_lost']) { $defending_perl = 0; } if ($attacksd_wonc['defending_won']) { $defending_perw = $attacksd_wonc['defending_won'] / ($attacksd_wonc['defending_won'] + $attacksd_lostc['defending_lost']) * 100; } elseif (!$attacksd_wonc['defending_won']) { $defending_perw = 0; } $T_won = $attacks_wonc['attacking_won'] + $attacksd_wonc['defending_won']; $T_lost = $attacks_lostc['attacking_lost'] + $attacksd_lostc['defending_lost']; if ($T_won) { $T_won_per = $T_won / ($T_won + $T_lost) * 100; } elseif (!$T_won) { $T_won_per = 0; } if ($T_lost) { $T_lost_per = $T_lost / ($T_won + $T_lost) * 100; } elseif (!$T_lost) { $T_lost_per = 0; } echo " Attack Record "; echo sprintf(' Won Amount Lost Amount Attacking Won %u (%u%%) Attacking Lost %u (%u%%) Defending Won %u (%u%%) Defending Lost %u (%u%%) Total Won %u (%u%%) Total Lost %u (%u%%) ', $attacks_wonc['attacking_won'], $attacking_perw, $attacks_lostc['attacking_lost'], $attacking_perl, $attacksd_wonc['defending_won'], $defending_perw, $attacksd_lostc['defending_lost'], $defending_perl, $T_won, $T_won_per, $T_lost, $T_lost_per ); if(isset($_POST['pn_update'])) { $db->query("UPDATE users SET user_notepad='{$_POST['pn_update']}' WHERE userid=$userid"); $ir['user_notepad']=stripslashes($_POST['pn_update']); print " Personal Notepad Updated!"; } print " ".htmlspecialchars($ir['user_notepad'])." "; $h->endpage(); ?>
-
check the content of the downloaded file. which file is that there is no php file called download.php
-
what file would i need to look in.
-
is there a hack that does this as it just started doing it
-
it all worked but now it dont. It worked for a month got off last night and now says downloand index.php when trying to log on
-
what causes the game to when u type in game link it gives u download option..