
vlad
Members-
Posts
51 -
Joined
-
Last visited
vlad's Achievements
-
Still looking!
-
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. 🙂
-
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.
-
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.
-
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!
-
Ah I understand - what's your current stack?
-
Congratulations @Dayo - I look forward to seeing your ideas!
-
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.
-
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!
-
Brings back memories ? Who owns the rights to GRPG nowadays?
-
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
-
mccode-v2 Secured bank (minor update to fit >) + Bank robbery!
vlad replied to yaz94's topic in Free Modifications
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. -
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?
-
<?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'; ?>
-
Okay thanks for your help ill have a look :)