
michaelbraden
Members-
Posts
19 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Everything posted by michaelbraden
-
I'm looking to hire coders to do several different jobs, I neeed ajex coders that can do certain things also someone to design my new login page. I got $500 To use up so Looking for great help.. Add meon skype michael.braden16
-
If you thought this was be vaz its not... i'M KRAZE, Fk knows who death is
-
Thank you! The game is comming along extreamly nicely, Have had a lot of support recently, but they allow me to do it myself. Have learned soo much, So thanks everyone who has been helping me! )
-
added you on skype :)
-
I am looking to buy a gradient feature and Would like someone to code it for me, I want it so users would need to pay 5k points to buy it, and once they have they can put the colors they want in for there username. I would like to know what this would cost me... someone has said £20 anyone go cheaper or help me do it myself ahha? :P Thanks
-
sadly this made no sence to me, I uploaded it to my game, and now im stuck with what to do next :/
-
I sorted the issue haha it was so obvious xD, But I would like to ask about the original codes, for the achievements? the images dont show just the bbcode and when i try apply php code I get errors
-
I am looking for help to apply bbcode in things such as messages and news updates and such, if anyone could help me that would be amazing :) Thanks.
-
I am new to all this so sorry if there is a simple explanation, after doing all this making sure crimes and things updated, I tried claiming the items and it took me to a page that dont exist? http://silentmafia.co.uk/missions_test.php?action=levelmission1 Please help me :(
-
I believe the script to refill energy and things would be similar??? But dont know what to put :/
-
fixed :) so dont worry hehe
-
My refill bars will only refill if I dont edit there hight in the code everytime I do, they dont move they just stay @ full can someone add to the code to make them still go up and down even when the hight is at 8px??? here is the code I use <tr> <td colspan="3" class="pos1" height="55" valign="middle"> <div class="topbox"> <table width='800'> <tr> <td width="50%"><img src="images/logo.png" /> </td> <td width="30%"> [<? echo $user_class->id; ?>] <a href='profiles.php?id=<? echo $_SESSION['id'] ?>'><? echo $user_class->formattedname; ?></a><br /> Level: <!_-level-_!> <br /> Money: $ <!_-money-_!> <a href = "bank.php">[bank]</a> <br /> Points: <!_-points-_!> <a href = "spendpoints.php">[use]</a> <a href = "sendpoints.php">[send]</a><br /> Credits: <?=$user_class->Credits;?> <a href = "rmstore.php">[use]</a> <a href = "sendCredits.php">[send]</a></td> <td width="20%"> HP: <div class="bar_a" title="<!_-formhp-_!>"> <div style="height:8px;" class="bar_b" style="width: <!_-hpperc-_!>%;" title="<!_-formhp-_!>"> </div> <a title = 'Refill this bar' href='spendpoints.php?spend=energy'>Energy</a>: <div class="bar_a" title="<!_-formenergy-_!>"> <div style="height:8px;" class="bar_b" style="width: <!_-energyperc-_!>%;" title="<!_-formenergy-_!>"> </div> </div> <a title = 'Refill this bar' href='spendpoints.php?spend=awake'>Awake</a>: <div class="bar_a" title="<!_-formawake-_!>"> <div style="height:8px;" class="bar_b" style="width: <!_-awakeperc-_!>%;" title="<!_-formawake-_!>"> </div> </div> <a title = 'Refill this bar' href='spendpoints.php?spend=nerve'>Nerve</a>: <div class="bar_a" title="<!_-formnerve-_!>"> <div class="bar_b" style="width: <!_-nerveperc-_!>%;" title="<!_-formnerve-_!>"> </div> </div></td> </tr> </table> </div> </td> </tr>
-
Thanks very much but I said, I am a absolout terrible coder and only started a few days ago xD I am doing this as a way to learn code xD This is just very hard ;)
-
I want to add a buy out of jail and hospital function, I got no idea how this is done, Please can someone give me the code I have GRPG silentmafia.co.uk
-
I don't have a forums and I am new to coding so I have no idea how to set a forums up, can someone give me a step by step guide on how to add the forums to my game. silentmafia.co.uk Thats my game!
-
Wow you rock! Fixed thanks soo much buddy! Seriously!!! - - - Updated - - - If you know where I can come across help with gradient names? Or just extra dailies for GRPG That would be great!!
-
I get this error when trying to run this Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given in /home/silentm2/public_html/moth.php on line 9 <?php include 'dbcon.php'; include 'classes.php'; include 'updates.php'; $result = mysql_query("SELECT id, hourlyattacks FROM grpgusers WHERE hourlyattacks > 0 DESC LIMIT 1"); $rows = mysql_num_rows($result); if($rows == 1) { $fetch = mysql_fetch_array($result); $usr = new User($fetch['id']); send_event($usr->id, "You won mobster of the hour with ".$fetch['hourlyattacks'].""); $result = mysql_query("UPDATE grpgusers SET points = points + 10 WHERE id = '".$usr->id."'"); $reset = mysql_query("UPDATE grpgusers SET hourlyattacks = '0'"); } ?> <?php include 'dbcon.php'; include 'classes.php'; include 'updates.php'; $result = mysql_query("SELECT id, hourlyattacks FROM grpgusers WHERE hourlyattacks > 0 DESC LIMIT 1"); $rows = mysql_num_rows($result); if($rows == 1) { $fetch = mysql_fetch_array($result); $usr = new User($fetch['id']); send_event($usr->id, "You won mobster of the hour with ".$fetch['hourlyattacks'].""); $result = mysql_query("UPDATE grpgusers SET points = points + 10 WHERE id = '".$usr->id."'"); $reset = mysql_query("UPDATE grpgusers SET hourlyattacks = '0'"); } ?>
-
I am seriously needing some help. I am trying to get my Mobster of The hour Script working. I have located the script at /moth.php and I need the script to run. Here is everything on moth.php <? $result = mysql_query("SELECT id, hourlyattacks FROM grpgusers WHERE hourlyattacks > 0 DESC LIMIT 1"); $rows = mysql_num_rows($result); if($rows == 1) { $fetch = mysql_fetch_array($result); send_event($fetch['id'], "You won mobster of the hour with ".$fetch['hourlyattacks'].""); $result = mysql_query("UPDATE grpgusers SET points = points + 10 WHERE id = '".$fetch['id']."'"); $reset = mysql_query("UPDATE grpgusers SET hourlyattacks = '0'"); } ?> Anyhow I am using a cpanel for crons but I got no idea howthis works as I am completly new! Please help me out guys! I want the script to see how many 'hourlyattacks' there are, take the highest, reward points, and reset hourlyattacks and start over.... someone help please?
-
Brand mew game @ silentmafia.co.uk Great mods ,unique in everyway! Join now for the next best experience! silentmafia.co.uk