-
Posts
863 -
Joined
-
Last visited
-
Days Won
4
Content Type
Profiles
Forums
Events
Everything posted by Razor42
-
Not going to login as for the language barrier but how about adding English text option to it? That could increase player base
-
Can we possibly see your game?
-
Maybe if you invested time and money into marketting your game you may just find that your game does not belong to such a 'niche' market and may just end up becoming a very large game! Too simple throw away three years of work would seem stupid to me! Hire a partner in which can help you run and code for the game you already have and the new game? There are a ton of options you can do before resorting to scrapping one! Push to go for both in my opinion!
-
I too purchased a Ravens engine un aware of the fact that it was a rip off of McCodes, within a month of y site being up and it was took down and my hosting account suspended.
-
Zombie Theme PSD design 80% complete tell me what you think!
Razor42 replied to BluroSoft's topic in Art and Content
Looks real nice! Ill speak to you non skype need something like this for an upcoming project! -
Personally I prefer the what's new page. Although did take me by surprise at first
-
Yeah and if a simple one is set up i'll take it and expand it and add many features for it and release these free to the forum also :)
-
A good car racing mod for free, haven't soon one out there yet!
-
Send me a pm with what your looking for
-
I have done quite abit of work on Mccodes and I am confident I can do work of a decent quality making almost everything you shall need. Also I am probably going to be one of the cheapest coders around here.
-
Learning is something you have to put down to yourself, people around here will help up along he way with tips etc. but the rest is down to you. Djk has a thread round here with some nice links (I would get you the link for it but I'm on my iPhone and that would be effort) so get a good website and learn from there and anything you don't quite understand you can google or ask on here :)
-
Any previous examples we can see?
-
To anyone who plays crime city on iOS then add me to your mafias 784 197 480
-
If anyone has any requests that they would like making for v2 then tell me and I will make them for free. Also if you have any good ideas then tell me and ill make for free.
-
And thank you Coder
-
No worries and yes could be something I could look into.
-
Thank you and thank you for the help!
-
First of all I would like to that Sniko for helping me with a couple of Math & HTML problems and then thank Illusions for testing, screenshots and fixing a few stupid errors I made! What this mod does? Allows players to spend money on treatments to help them gain energy and health back. I know its nothing unique or special but just created it to get back into the swing of coding!. Create a file and call it physio.php and add into it: <?php include_once 'globals.php'; echo "<h3>Physio Center</h3>"; if ($ir['donatordays'] == 0) { echo "<center><h2><FONT COLOR='#DF0101'>RESTRICTED ACCESS! DONATORS ONLY!</FONT></h2><a href='explore.php'>Return to Town</a>"; exit(); } switch($_GET['action']) { case 'ice': ice(); break; //5% e case 'ice_sub': ice_sub(); break; case 'massage': massage(); break; //%15 e case 'massage_sub': massage_sub(); break; case 'hot': hot(); break; //25% h case 'hot_sub': hot_sub(); break; case 'regen': regen(); break; //100% h + e case 'regen_sub': regen_sub(); break; default: index(); break; } function index() { global $db, $ir,$c,$userid,$h; echo "Hello and welcome to the Physio Center. How may we help you today?.<br /> <table border='1' cellspacing='2' cellpadding='5' class='table'> <tr> <td width='75%' colspan='4'> <center><U><B>Physio Treatments</B></U> </td> </tr> <tr> <td width='15%'> <center><B>Treatment</B> </td> <td width='40%'> <center><B>Description</B> </td> <td width='10%'> <center><B>Cost</B> </td> <td width='10%'> <center><B>Take</B> </td> </tr> <tr> <td width='15%'> <center>Ice Bath </td> <td width='40%'> <center>Jump into an ice cold bath and feel the energy boost instantly. </td> <td width='10%'> <center>$100,000 </td> <td width='10%'> <center><form action='physio.php?action=ice' method='post'> <input type='submit' name='ice' value='Take' /></form> </td> </tr> <tr> <td width='15%'> <center>Massage </td> <td width='40%'> <center>Let one of our physios give you an invigorating massage. </td> <td width='10%'> <center>$250,000 </td> <td width='10%'> <center><form action='physio.php?action=massage' method='post'> <input type='submit' name='massage' value='Take' /></form> </td> </tr> <tr> <td width='15%'> <center>Hot coals </td> <td width='40%'> <center>Let one of our physios lay hot coals on your body and soothe away the pain. </td> <td width='10%'> <center>$150,000 </td> <td width='10%'> <center><form action='physio.php?action=hot' method='post'> <input type='submit' name='hot' value='Take' /></form> </td> </tr> <tr> <td width='15%'> <center>Regeneration </td> <td width='40%'> <center>Enter our regeneration programme and feel the power!. </td> <td width='10%'> <center>$250,000 </td> <td width='10%'> <center><form action='physio.php?action=regen' method='post'> <input type='submit' name='regen' value='Take' /></form> </td> </tr> </table>"; } function ice() { global $db, $ir,$c,$userid,$h; echo "You have picked to take an ice bath. The cost of our ice baths are $100,000 and they will regenerate<br /> your energy by 5%. Are you sure you wish to undertake this treatment?</br> <form action='physio.php?action=ice_sub' method='post'> <input type='submit' name='ice_sub' value='Take' /></form>"; } function ice_sub() { global $db, $ir,$c,$userid,$h; $maxen=($ir['energy'] / 100) * 100; if ($ir['money'] < 99999) { echo "Our treatments do not come free. Please come back when you can afford them.</ br> <a href='explore.php'>Go back to Town.</a>"; } elseif ($ir['energy'] == $maxen) { echo "You have full energy, therefore there is no need for you to undertake this treatment.</ br> <a href='explore.php'>Go back to Town.</a>"; } else { echo "You took an ice bath and can feel the energy coming back already. You have gained 5% of your energy back.</ br> <a href='explore.php'>Go back to Town.</a>"; $enadd=($ir['energy'] / 100) * 5; $db->query("UPDATE users SET money=money-100000 WHERE userid=$userid"); $db->query("UPDATE users SET energy=energy+$enadd WHERE userid=$userid"); } } function massage() { echo "You have picked to have one of our physios give you a massage.</ br> This treatment will cost you $250,000 and will regenerate 15% of your energy.</ br> Are you sure you wish to undertake this treatment?</br> <form action='physio.php?action=massage_sub' method='post'> <input type='submit' name='massage_sub' value='Take' /></form>"; } function massage_sub() { global $db, $ir,$c,$userid,$h; $maxen=($ir['energy'] / 100) * 100; if ($ir['money'] < 249999) { echo "Our treatments do not come free. Please come back when you can afford them.</ br> <a href='explore.php'>Go back to Town.</a>"; } elseif ($ir['energy'] == $maxen) { echo "You have full energy, therefore there is no need for you to undertake this treatment.</ br> <a href='explore.php'>Go back to Town.</a>"; } else { echo "You had one of our physios give you a massage. You have gained 15% of your energy back.</ br> <a href='explore.php'>Go back to Town.</a>"; $enadd=($ir['energy'] / 100) * 15; $db->query("UPDATE users SET money=money-250000 WHERE userid=$userid"); $db->query("UPDATE users SET energy=energy+$enadd WHERE userid=$userid"); } } function hot() { echo "You have picked to have one of our physios to put hot coals on your back.</ br> This treatment will cost you $150,000 and will regenerate 25% of your health.</ br> Are you sure you wish to undertake this treatment?</br> <form action='physio.php?action=hot_sub' method='post'> <input type='submit' name='hot_sub' value='Take' /></form>"; } function hot_sub() { global $db, $ir,$c,$userid,$h; $maxhe=($ir['health'] / 100) * 100; if ($ir['money'] < 149999) { echo "Our treatments do not come free. Please come back when you can afford them.</ br> <a href='explore.php'>Go back to Town.</a>"; } elseif ($ir['health'] == $maxhe) { echo "You have full health, therefore there is no need for you to undertake this treatment.</ br> <a href='explore.php'>Go back to Town.</a>"; } else { echo "You had one of our physios give you a massage. You have gained 15% of your energy back.</ br> <a href='explore.php'>Go back to Town.</a>"; $headd=($ir['health'] / 100) * 25; $db->query("UPDATE users SET money=money-150000 WHERE userid=$userid"); $db->query("UPDATE users SET health=health+$headd WHERE userid=$userid"); } } function regen() { echo "You have picked our regeneration programme.</ br> This treatment will cost you $750,000 and will regenerate 100% of your health and energy.</ br> Are you sure you wish to undertake this treatment?</br> <form action='physio.php?action=regen' method='post'> <input type='submit' name='regen' value='Take' /></form>"; } function regen_sub() { global $db, $ir,$c,$userid,$h; $maxhe=($ir['health'] / 100) * 100; $maxen=($ir['energy'] / 100) * 100; if ($ir['money'] < 749999) { echo "Our treatments do not come free. Please come back when you can afford them.</ br> <a href='explore.php'>Go back to Town.</a>"; } elseif ($ir['health'] == $maxhe) { echo "You have full health, therefore there is no need for you to undertake this treatment.</ br> <a href='explore.php'>Go back to Town.</a>"; } elseif ($ir['energy'] == $maxen) { echo "You have full energy, therefore there is no need for you to undertake this treatment.</ br> <a href='explore.php'>Go back to Town.</a>"; } else { echo "You had one of our physios give you a massage. You have gained 15% of your energy back.</ br> <a href='explore.php'>Go back to Town.</a>"; $headd=($ir['health'] / 100) * 100; $enadd=($ir['energy'] / 100) * 100; $db->query("UPDATE users SET money=money-750000 WHERE userid=$userid"); $db->query("UPDATE users SET health=health+$headd WHERE userid=$userid"); $db->query("UPDATE users SET energy=energy+$enadd WHERE userid=$userid"); } } $h->endpage(); ?> Screenshot [ATTACH=CONFIG]772[/ATTACH] Hope everyone enjoys using this!.
-
If one of you's could maybe add me on skype? aaron.razor42 or send me an email address so that I can send the files to you's?
-
Need someone with v2 up and running to test some things iv been working on to check for errors and things, these mods iv been working on will be released free to the forum so would be nice if someone could help me out by testing them as I'm helping the forum out by creating free things :).
-
@a_bertrand - Didn't mean to insult you in anyway nor for you to think that I was. I think you got the wrong idea, I was simply just asking out of interest. I support the work your doing with NWE and have recommended it to many people as its an engine you are constantly working on and upgrading. I asked simply out of interest.
-
Things like this could get the place buzzing again!. Excellent idea. Another categories could be: Helper of the month (People who give lots of help) and also a award to someone who releases good quality free work to the forum each month.
-
Just have a quick question regarding the NEW engine. How many people are using/own a full license of the engine? Oh, and another one, are there any up and running successful game examples of the engine up I could see?. Just out of curiosity really :).
-
If there are no errors showing and there are no visible problems that you know of, then how do you know there are actually problems/errors?