Jump to content
MakeWebGames

vlad

Members
  • Posts

    51
  • Joined

  • Last visited

Everything posted by vlad

  1. Still looking!
  2. I'm using the existing tables as a point of reference but the structure that I'm employing is radically different. I am taking steps to optimise the database as I work through it but I'm taking it one step at a time as I am making design and implementation decisions as I approach each piece of functionality. As you say, there are a lot of unnecessary prefixes and the likes within McCodes but there's no need for them with Laravels Eloquent ORM. 🙂
  3. Recently, I undertook the task of rebuilding the original McCode game engine within Laravel and while it's not a monstrous task, I have found myself wanting to invest in or acquire a game as I would like to deliver features and likes to a community of players while working on the Laravel project on the side. The technicalities of what I offer from an investment/partner perspective: I am mostly backend orientated however I'd be happy to tackle front-end requirements so I could support the project's development efforts. My core proficiencies are in C#, PHP, JS, and MySQL. I have extensive marketing experience that I will leverage to maximise the project's reach. I have a data analytics and automation background that I will utilise to transform the player activity and retention metrics. I'm happy to open discussions relating to both the purchase and investment opportunities - feel free to reach out to me in PMs.
  4. vlad

    Coming Home

    Welcome back, dude! Much like DJR I remember seeing your mods and content everywhere back in the day! Really nice to have you back and I can't wait to see what you bring.
  5. Good stuff mate, I'm not sure how many of the members still use the email they once did on here but I think a newsletter will have a positive impact on the user base. I'm all for the subscription, anything to reinvigorate the forums again!
  6. Ah I understand - what's your current stack?
  7. Congratulations @Dayo - I look forward to seeing your ideas!
  8. You don't generally need qualifications, I think it's a misconception and I have fallen victim to it myself. I recently graduated with a degree in Software Engineering. I'll list some takeaways and preface them with the fact that everyone works/learns differently and the points I raise might not apply to you directly. My degree was relatively high level in the first 1-2 years but it provided an opportunity to gain exposure to programming languages/tools and frameworks that I wouldn't have otherwise worked with. Understanding the benefits of specific tools/etc has helped me with my approach to challenges. As someone involved in programming from the age of 14, I picked up a lot of bad practices which were brought to light when I started studying. However, there's a myriad of resources that help promote best practices nowadays. In my younger years I would approach a problem but it was only when I started studying that I understood why I was approaching problems in a specific way and how I could optimise that process. University as an experience helped me improve my soft skills. Day to day, I find myself leveraging my soft skills more often than my programming ability and I think that's the reality of working in a corporate environment. I can honestly go on forever and if you have any specific questions don't hesitate to drop me a message. The best advice I can myself with the benefit of hindsight would have been to continue practising/building on the languages that I was good at before enrolling.
  9. Cool premise mate, I know that one of the more popular games based in this space closed down over a year or so ago so you might have a bit of a gap in the market for this target audience! Best of luck!
  10. Brings back memories ? Who owns the rights to GRPG nowadays?
  11. Hey guys, I've lost my touch with coding and I'm in need of someone to create me a game engine! I will pay a negotiable amount and the watered down version of the idea revolves around boxing or fighting in general. vlad
  12. Just a heads up, that wont work, try this -   CREATE TABLE `bank` ( `robbery` INT(11), `robmoney` varchar(255) ); INSERT INTO `bank` (`robbery`, `robmoney`) VALUES ('0', '0');   Not much of a difference but its the only error I got.
  13. I think mmatycoon.com beat you to the idea, either way nice idea, got any fundamentals for the game yet or you still thinking of what to do?
  14. <?php include 'header.php'; if ($_POST['takebet'] != ""){ $result = mysql_query("SELECT * FROM `5050points` WHERE `id`='".$_POST['bet_id']."'"); $worked = mysql_fetch_array($result); if ($worked['owner'] == $user_class->id) { echo Message("You can't take your own bet."); include 'footer.php'; die(); } $amount = $worked['amount']; $user_points = new User($worked['owner']); if ($amount > $user_class->points){ echo Message("You don't have enough points to match their bet."); } if($amount <= $user_class->points){ $newpoints = $user_class->points - $amount; $result = sprintf("UPDATE `grpgusers` SET `points` = '".$newpoints."' WHERE `id`='".$user_class->id."'", mysql_real_escape_string($grpgusers), mysql_real_escape_string($points), mysql_real_escape_string($newpoints)); mysql_query($results); $user_class = new User($_SESSION['id']); $winner = rand(0,1); if($winner == 0){ //original poster wins echo Message("You have lost."); $amount = $amount * 2; $newpoints = $user_points->points + $amount; $newgpoints = $user_points->gpoints + 1; $newgpointsl = $user_class->gpointsl + 1; $result = sprintf("UPDATE `grpgusers` SET `points` = '".$newpoints."',`gpoints` = '".$newgpoints."' WHERE `id`='".$user_points->id."'", mysql_real_escape_string($grpgusers), mysql_real_escape_string($points), mysql_real_escape_string($newpoints), mysql_real_escape_string($gpoints), mysql_real_escape_string($newgpoints)); mysql_query($results); Send_Event($user_points->id, "You won the points bid you placed."); } else { //the person who accepted the bid won echo Message( "You have won!"); $amount = $amount * 1; $newpoints = $user_class->points + $amount; $newgpoints = $user_class->gpoints + 1; $newgpointsl = $user_points->gpointsl + 1; $result = sprintf("UPDATE `grpgusers` SET `points` = '".$newpoints."',`gpointsl` = '".$newgpointsl."' WHERE `id`='".$user_class->id."'", mysql_real_escape_string($grpgusers), mysql_real_escape_string($points), mysql_real_escape_string($newpoints), mysql_real_escape_string($gpointsl), mysql_real_escape_string($newgpointsl)); mysql_query($results); Send_Event($user_points->id, "You lost the points bid you placed."); } $result = mysql_query("DELETE FROM `5050points` WHERE `id`='".$worked['id']."'"); } } if ($_POST['makebet']){ $amount = abs(intval($_POST['amount'])); if ($amount > $user_class->points) { echo Message("You do not have that much money."); } if ($amount < 5){ echo Message("Please enter a valid amount."); } if ($amount <= $user_class->points && $amount > 0) { echo Message("You Added $amount points"); $result= mysql_query("INSERT INTO `5050points` (owner, amount)"."VALUES ('$user_class->id', '$_POST[amount]')"); $newpoints = $user_class->points - $_POST['amount']; $result = sprintf("UPDATE `grpgusers` SET `points` = '".$newpoints."' WHERE `id`='".$user_class->id."'", mysql_real_escape_string($grpgusers), mysql_real_escape_string($points), mysql_real_escape_string($newpoints)); mysql_query($results); $user_class = new User($_SESSION['id']); } } ?> <tr> <td class="contenthead">[<b><a href="http://5050game.php" target="_blank">5050 cash</a></b>][5050 points]</td></tr> <tr><td class="contentcontent"> This game is simple. 2 people bet the same amount of points, then a winner is randomly picked. The winner recieves all of the points! </td></tr> <tr><td align="center" class="contentcontent"> <form method='post'> </p> Amount of points to bid. <input name='amount' type='text' class="areatest" value='0' size='10' maxlength='20'> (minimum of 5 points bet) <input name='makebet' type='submit' class="buttong" value='Make Bet'> [<a href="http://5050points.php" target="_blank">Refresh</a>]</p> </form> </td></tr> <tr><td class="contentcontent"> <?php $result = mysql_query("SELECT * FROM `5050points` ORDER BY `amount` DESC"); while($line = mysql_fetch_array($result, MYSQL_ASSOC)) { $user_points = new User($line['owner']); echo "<form method='post'>"; echo " ".$user_points->formattedname." - ".$line['amount']." points<input type='hidden' name='bet_id' value='".$line['id']."'> <input type='submit' name='takebet' value='Take Bet'></form>"; } ?> </td></tr> <?php include 'footer.php'; ?>
  15. vlad

    Any one know ?

    Okay thanks for your help ill have a look :)
  16. vlad

    Any one know ?

    Hey , any one know the email of the original creator of the generic rpg ? If some one knows can you please PM me , thanks.
  17. Awesome , what program did you use?
  18. Oh yeah thats right , sorry dude
  19. works fine for me
  20. nice mod grant !
  21. I dont think they sell the engine any more , source forge give it for free for some reason . legal site , google it.
  22. Hey , would any one want like a classes mod for generic rpg , the register and login was created by some one else and but i just change the fact the depends on which crew your in your have a different advantage and different display picture , also i am currently coding a add on for donator's which lets them change their class and also have a custom avatar+a original class name such as don etc + different crimes for every class and a bonus so if your bloods gang you get a strength a bonus while training at a gym , for example if normally you will get 100s for training being class blood will give you 115 so if you train in a good house etc it will keep people active. Feel free to add me and post any other suggestions [email protected]
  23. Any one got any good free layouts for generic rpg , mafia/outlaw like but looks cool? Thanks for reading.
  24. can i just point out , grant requesting for those mods but http://www.purifiedgaming.com/index.php?page=Thread&postID=287 grant their is selling the mods that might have been purchased on here? cant say im 100% sure but just pointing out.
  25. Is their any way to make a cron that backs up your sql files to a different database every midnight?
×
×
  • Create New...