Jump to content
MakeWebGames

Razor42

Members
  • Posts

    863
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by Razor42

  1. This is my first paid mod so hopefully it will be a success and everyone will love it! What this mod does? -Allows players to visit the club!. -When entering the club a set of random events can happen which may hinder your entrance into the club!. -Allows players to drink, take drugs and dance in the club!. -Players will have drinking levels, drug levels and dancing levels. The better the drug and drinking level the more drugs and drink they will be able to handle. The better there dancing the better there outcomes when dancing will be!. -When players drink they gain energy, the stronger the drink the more energy they gain. -When players take drugs they gain brave, the stronger the drug the more brave they will earn. -When players dance a set of random events can occur. These random events also differ due to your dancing level. The events include things like loosing money, gaining money and also gaining will. Screenshots: [ATTACH=CONFIG]797[/ATTACH] [ATTACH=CONFIG]798[/ATTACH] [ATTACH=CONFIG]799[/ATTACH] What this mod includes: -A .zip folder with all the necessary files and installation instructions!. -Life time support guarantee!. -All upgrades are free!. Price: This all comes for an excellent price of $5! Payment details: All payments to be sent to [email protected] and then email your transaction i.d to [email protected] and once I have verified you have sent the money I will reply to your email with the necessary file!.
  2. Problem has been fixed, thaanks for everyones help.
  3. Razor42

    Introduce

    Welcome to the forum mate
  4. Many of the features of the gta v have already been real eased by rockstart gaming! Also many things can be told about the game just by paying attention to the trailer they have ready released!
  5. I may be placing a bid in January time, the title will need changing though!
  6. The space isn't there on the file on the server for some reason it was just added when I uploaded the code here. Like Urban said I think it needs adding to globals not glob_funcs. Ill give it a try when I get on my laptop
  7. Not wasting my time at all, thanks for the help mate.
  8. Tried that bud
  9. Yeah I changed it to the $db->query which it should be but still nothing.
  10. Well someone posted about wanting some reward images so threw a quick little something together! I'm no amazing graphics designer so its not brilliant but if you want it just PM me and I will send you the PSD. [ATTACH=CONFIG]796[/ATTACH]
  11. Basically I have added this to glob_funcs: function drinking_check() { $thug = mysql_query("SELECT `drinking_lvl`,`drinking_exp`,`drinking_expneed` FROM `users` WHERE (`userid`=".$_SESSION['userid'].")"); $s = mysql_fetch_array($thug); $s['drinking_expneeded']=(int) (($s['drinking_lvl']+1)*($s['drinking_lvl']+1)*($s['drinking_lvl']+1)*2.2); if($s['drinking_exp'] >= $s['drinking_expneed']) { $expu=$s['drinking_exp']-$s['drinking_expneed']; $s['drinking_lvl']+=1; $s['drinking_exp']=$expu; $s['drunk_max']=+15; mysql_query("UPDATE `users` SET `drinking_lvl`=`drinking_lvl`+1,`drinking_exp`=$expu WHERE (`userid`=".$_SESSION['userid'].")"); } }   This code is to check that if they have reached the exp needed then they advance to the next level but currently when they reach the needed exp they do not advance a level instead they just stay at the same level and there exp just keeps going up.
  12. Oh thats cool! Anyway sorry for going off topic was just interested :)
  13. Can I ask what kickstarter is?
  14. Might work on doing some free ones sometime over the next two weeks if I can be bothered! They won't be anything amazing though!.
  15. Nice and simple design :).
  16. Never mentioned there were any "real" changes! Not everyone can code and some people can't even do a table so they will find something like this useful. Plus it's not like its a paid mod, it's free! Also instead of just criticising post suggestions? What else could be done to make it better?
  17. Once purchased you can alter the code as much as you like I believe. I'd personally go with NWE.
  18. Hey there got bored tonight and thought I would update the looks of a page and thought the home page looked pretty dull so I made it look a little better. Open index.php and replace with: <?php $housequery=1; include "globals.php"; echo "<h3>Home:</h3>"; $exp=(int)($ir['exp']/$ir['exp_needed']*100); $ts=$ir['strength']+$ir['agility']+$ir['guard']+$ir['labour']+$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['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['IQ']=number_format($ir['IQ']); $ts=number_format($ts); echo" <table border=1 style='background-color:silver; cellspacing='2' cellpadding='2'> <tr> <td width='75%' colspan='2'> <center><b><u>General Info</b</u> </td> <tr> <td width='75%' colspan='2'> <center><b>Name:</b> {$ir['username']} </td> </tr> <tr> <td> <center><b>Level:</b> {$ir['level']} </td> <td> <center><b>Exp:</b> {$exp}% </td> </tr> <tr> <td> <center><b>Money:</b> $fm </td> <td> <center><b>Crystals:</b> {$cm} </td> </tr> <tr> <td> <center><b>HP:</b> {$ir['hp']}/{$ir['maxhp']} </td> <td> <center><b>Property:</b> {$ir['hNAME']} </td> </tr> <tr> <td width='75%' colspan='2'> <center><b><u>Stats Info:</u></b> </td> </tr> <tr> <td> <center><b>Strength:</b> {$ir['strength']} [Ranked: {$ir['strank']}] </td> <td> <center><b>Agility:</b> {$ir['agility']} [Ranked: {$ir['agirank']}] </td> </tr> <tr> <td> <center><b>Guard:</b> {$ir['guard']} [Ranked: {$ir['guarank']}] </td> <td> <center><b>Labour:</b> {$ir['labour']} [Ranked: {$ir['labrank']}] </td> </tr> <tr> <td> <center><b>IQ: </b> {$ir['IQ']} [Ranked: {$ir['IQrank']}] </td> <td> <center><b>Total stats:</b> {$ts} [Ranked: $tsrank] </td> </tr> </table>"; 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 "<hr><b>Personal Notepad Updated!</b>"; } echo "<hr><b><u>Your Personal Notepad:</b></u><form action='index.php' method='post'> <textarea style='background-color:silver;border:dashed;' rows='10' cols='50' name='pn_update'>".htmlspecialchars($ir['user_notepad'])." </textarea><br /> <input type='submit' value='Update Notes' /></form>"; $h->endpage(); ?>   Screenshots: Old style: [ATTACH=CONFIG]795[/ATTACH] New: [ATTACH=CONFIG]794[/ATTACH]
  19. Fantastic work! Looks amazing! Good luck with the sale!
  20. Razor42

    New Game

    Not the worst iv seen but far from the best. Needs de-cluttering!.
  21. Buy a website? Or a game?
  22. Do you design some of these yourself? If so do you do custom jobs and how much do you charge if you do custom jobs?
  23. Razor42

    what do you

    Personally I agree with sniko , in a current project me and a friend are working on we have a full detailed story that's going to be enforced through out the game via a story playing mission system with a mind of adventure book system
  24. If your willing to pay go to someone who actually knows what they are doing
×
×
  • Create New...