Jump to content
MakeWebGames

SwiftGameR

Members
  • Posts

    257
  • Joined

  • Last visited

  • Days Won

    20

Everything posted by SwiftGameR

  1. Yea Dave is spot on hes doing amazing job yea looks like i will have to just let them have the cash i made more here on new marketplace than what i did on his
  2. Looks amazing dude 😛
  3. @ColdBlooded I have contacted you via email twice and left you dozens of messages on discord for my withdraw but never get a reply. I will say @Dave pays out within the hour 99% of my withdraws great service i would highly recommend using the new market place system and if you are uk developer you can save yourself some fees from paypal which is even more amazing 😛 keep up the good work
  4. @Dayo Thanks for the advice still getting used to the class and ids
  5. fire away mate it was a private job 🙂
  6. Here in Scotland we went into lock down yesterday i just go about my usual business but alot of shops / cafes have closed etc
  7. @ags_cs4 yea for private client not to be sold mate
  8. Just a little update on this i have not forgot about it have been hitting it hard since yesterday here is where we stand so far. Just need to add in the code for accepting the fights and the module will be completed.
  9. i did one of these for mccodes v2 but its all hard coded in each site has there own ipn call back file
  10. @Dave thanks for mention i am interested 🙂
  11. @Karma I have already converted this to v2 its just not on the market place yet as i have not got around to grpg side been doing stuff for gl recently If you would rather purchase it private you can pm me here or discord rather than waiting on it going on the market its up to you really
  12. was away to say i used to play this game and the prison one love the designs 🙂
  13. wow never even noticed i wrote gl-engine i was trying to ask the engine thanks for confirming this
  14. Thats's a gl-engine ? i used to see lots of these a long time ago.
  15. I have been doing a lot of work for GL engine recently and have posted some mods recently. Some are free and some are paid, Some of my work is also done via private clients which i have permissions to post the screenshots in here when i get a minute to re install all the modules because stupid me deleted all the files out the wrong folder losing everything on my gl engine folder 😄 All my mods can be purchased via the marketplace * GRPG Modules v1 (v2 coming soon) * Mccodes v2 Modules * Gangster Legends V2 . Just in case people don't visit the shop very often i will post my recent gl work here. I will be providing screenshots of modules i have created for a client but these modules will not be for sale as they are private jobs. ** Screenshots will be uploaded tomorrow once i get the modules installed in my game again **
      • 1
      • Like
  16. Got to say that i am loving the new marketplace and the new ownership i have requested money twice from here and got it within 5 minutes of sending my messages accept one time but @Dave was away in Spain if i remember correctly i will certainly be using this more often for my work and would reccommend anyone who wants to sell work to do the same. Whats even better for uk sellers is you can get a instant bank transfer which saves all these dam paypal fees.
  17. Thanks Dayo this is what i need exactly Thank you to everyone for your answers but gangsters legends styling is a little different which im still getting used to
  18. I have only just started coding for gl engine and its still quite new to me I have been building a paid module (Boss Fights) i have all the code set up and attack functions are working properly there is a slight issue when im trying to display the last 10 hits in mccodes would be easy buy this i dont fully understand yet So basiclly i want it to display something like this <th>User</th> <th>Damage done</th> Then under the user the users name and under damage done i want it to say there damage but now i get it like this
  19. Yes @AdamHull said i was missing a json file so i took another look and honestly never seen that file in there before haha Right that makes sense
  20. I have been trying to get into developing for gangster legends engine but i just cant figure out how to work it properly i was trying to make a simple lucky dip to try learn here is what i got so far 1. Created a folder called lucky in the modules section 2. Inside the folder i added 3 files lucky.hooks.php , lucky.inc.php , lucky.tpl.php lucky.hooks.php <?php new hook("actionMenu", function () { return array( "url" => "?page=lucky", "text" => "Lucky Dip" ); }); lucky.tpl.php <?php class luckyTemplate extends template { public $lucky = ' <div class="panel panel-default"> <div class="panel-heading">Lucky Dip!</div> <div class="panel-body"> <p>Want to try your luck at the lucky dip it costs $1,000 per try and you can try 5 times a day.</p> <a href="?page=lucky&action=chance">Lucky Dip It</a> </div> </div> '; } ?> lucky.inc.php <?php class lucky extends module { public $maxcost = 1000; public function constructModule() { } public function method_chance() { if ($this->user->US_money < 10000) { return $this->error('You do not have enough money.'); } } } ?> I don't quite know what to do with the construct module section i gather the function below is for actions. Below is a screenshot of what i see when i click on my Lucky dip link in the actions menu. when i add a json file to this now i get this
  21. I have a heists module but it's for grog or Mccodes Each heist requires x amount of players and certain amount of power which each person in the heist contributes to based on stats I have a demo up on my test site
  22. Hi sorry i have not been online my pc is broken down I have to get it taken in for repairs let me go grab a quick read of what I have missed if support still needed. Sorry again for any inconvenience I will get this fixes a soon as I can get my pc repaired its not very good time to break down with it being the new year. Thank you Dave for sorting that out I must of missed something ill have a look over the module and sort it as soon as possible is there a chance you can put the module on pause or something so people can't buy it until i put up a patch Again sorry for any errors
  23. I have been looking at trying to get some work done for GL engine and have been running into some issues. Let me explain what i was trying to do for a simple learning purpose i was trying to do a simple daily reward system. 1. User can goto page and click button 2. code runs then they are rewarded etc I managed to figure out how to get the links on the side to show up but when i click on it just says cant be found. My Steps: 1. Created a folder in "installed" named it daily 2. Inside this folder i have 3 files ( module.json , daily.tpl.php , daily.hooks.php) Here's my files. daily.tpl.php <?php class dailytemplate extends template { public $dailygift = ' <div class="alert alert-warning"> You can claim up to 1 reward a day. </div> <div class="panel panel-default"> <div class="panel-heading">Would you like to open a gift?</div> <div class="panel-body"> <div style="text-align:center;"> <a class="button-fixed-width btn btn-default" href="?page=dailyGifts&action=claim">Claim Gift</a> </div> </div> </div> '; } ?> daily.hooks.php <?php new hook("userInformation", function ($user) { global $page; $time = $user->getTimer("daily"); if (($time-time()) > 0) { $page->addToTemplate('daily_timer', $time); } else { $page->addToTemplate('daily_timer', 0); } }); new hook("actionMenu", function () { return array( "url" => "?page=daily", "text" => "Daily Gift", "sort" => 100 ); }); ?> When i try to access my page i get
  24. Petty you were not running mccodes i have just uploaded a drugs module. Users can buy drug buildings which produce drug per day (there is a base amount but things like stats, being active contributes) There is a drug dealer with all the drug you choose to have in the game with his own stock and prices which changes daily. You can also pay special credit like crystals to buy a extra % bonus to your productions on your buildings. Oh and there is also a special event that can trigger which wants a certain type of drug for a higher cost than the drug dealer does
  25. I have experience in both "Mccodes ans GRPG" if you wish to get any help ill be here to answer any questions you might have
×
×
  • Create New...