Jump to content
MakeWebGames

Sim

Members
  • Posts

    2,392
  • Joined

  • Last visited

  • Days Won

    62

Everything posted by Sim

  1. Use your imagination, if I have to get a cease letter and lawsuit. They stole from me. 🙂 To much personal information is made another today, I might just do up at there doorstep
  2. If anyone was able to download it AND HAS DOWNLOADED IT. I do not give you or anyone else permission to use it without payment. My code is copywritten, so possible downloader(s) beware, I will take the most severe legal actions possible worst then a cease letter. (And the reason I disappear from these forums for months at at time is because I am usually in jail). Thanks for pointing this out to me @andr3as
  3. I don't own a PC or laptop right now. I have to upload to FTP(how one would transfer though). Then browse to my site. And reupload. I rather be able to work on my files and check for errors locally.
  4. I don't know how I should feel being told that. Maybe you don't know I code? LoL.. and been doing it for almost 20 years. What I meant was, giving everyone a daily token from the very beginning instead of checking if doesn't have one, give one, ECT. Like I did But then again he did create the same function 30x 😃 I was complimenting good theory on daily rewards on how he used that to check and reward. I know how to use a timestamp and check.
  5. Anyone ever turn there cell phone into web server to develop on locally? I'm probably only goofball that develops on cellphone full-time anyway
  6. Sim

    Alpha Criminals

    Unfortunately I have not even got to touch any code yet this weekend, I worked yesterday, so hoping to finish up 3 things that left unfinished today.
  7. IMO GL is much better then mccodes. It's secured, and the code is more up to date.
  8. OPEN: class/modules Around line 5, find: or something similar. public $alerts = array(), $html = '', $page, $user, $db, $methodData, $construct = true, $_settings; ADD at end of line $mods = array(); To create this: public $alerts = array(), $html = '', $page, $user, $db, $methodData, $construct = true, $_settings, $mods = array(); Around line 25, find: $this->buildMethodData(); Add this after: $this->loadModuleFunctions(); At end of file, find: } ?> Add this function, method before public function loadModuleFunctions() { $moduleDirectories = scandir("modules/installed/"); /* Load modules first */ foreach ($moduleDirectories as $moduleName) { if ($moduleName[0] == ".") continue; $moduleIncFile = "modules/installed/" . $moduleName . "/" . $moduleName . ".inc.php"; $moduleAcpDile = "modules/installed/" . $moduleName . "/" . $moduleName . ".admin.php"; if (file_exists($moduleIncFile)) { include $moduleIncFile; $this->mod[$moduleName] = new $moduleName(); } } } And now you can acess any function, method from any module in any module. Examples: $this->mods["crimes"]->method_commit(); //will commit crime If proper Crime ID is set in crime={ID} in url $this->mods["jail"]->getJailUsers(); return's list of users in jail based upon player location $this->mods["travel"]->method_fly(); //move player to location if location ID is set in ex url ?page=punchMod&action=punch&user=1ocation=2 So the last one, as you can see the only way to use the majority of functions from other modules is by adding the GET variable (s) associated with the module functions you wish to use. Since I am heavily moding GL, I been changing the functions to pass a paramater instead of using GET variables. This small core code for is a great addition to interact with other modules. @Dayo you should include this in the next update or your own version of it.
  9. That was the whole reason this item system was created. Message me. I won't kick out any code without payment , but I will develop it until payment is ready. 🙂 Message me.
  10. I don't think any changes to the main code was done in premium which means the item/inventory system is compatible. Message me and we will work out a form of payment. I have not wallets for eth.
  11. If a new team gets established, I would love to help build v3
  12. I already wrote a long topic)my half or the work trying to find partner. And it says message me and they yelling me to message them. The closer I get to find release product. There are likely I'll want a partner and give code to anyone. I would have done put in most of the wo
  13. Is it possible to get the source to add to mines?
  14. Lol. Yes it is. Funny mod
  15. I have neither. Skype or discord, but as the message says, message me. It's shows your actual interested and can follow the simplest directions. There is a thread here which shows my progress:
  16. Kinda wished you wouldn't have used the jQuery. I got one function or line of code to convert all links to be dynamic. And as mentioned, sure someone else would use this But thank you, you exactly what was needed. I like the little red # count. ') looks great
  17. Congrats on release. Is your update checker released?
  18. Sim

    Toon Crime

    What @ags_cs4 said. Good luck. I'd like to be apart of closed beta Toon styled games do well for the most part. Also sounds like a lot of what I've done. 🙂
  19. I'm available for work and could really use it. If you have not you're or found anyone yet. Message me and I'll give you quote
  20. I'm available
  21. Force download with imagelng/imagegif or even file_get_contents ? Im sure you are also aware of changing the header of pages? Can change to image to force it to pop up as download?
  22. Sim

    Alpha Criminals

    As everyone can see, progress has been much shower this week. I have returned to work till time this week which has made me extremely tired after only working one a week the following four weeks. But anyway I have done several things over the week which is not mentioned. And I did what I said I shouldn't. I have several modifications started and none completed. This weekend I will have several mods finished to post as well as other progress which is not to noticable unless I know what you are looking for. Small ajax loading, back end improvements, ect Mugging, attacking, and lottery(didn't work fully) will be included. Game stat additions and a new daily tasks.
  23. Most casino's have not rule for many cards a dealer/player can have. Dealer wind all ties. 21 is the highest # in blackjack without busting. So with both players achieving 21, you automatically use since dealer wins tie.
  24. Just within the page. It's basically to make a half decent prototype of an idea and if everyone likes it I will pursue it further.
  25. Can only one user do the heist or must multiple users do heist?
×
×
  • Create New...