Jump to content
MakeWebGames

Sim

Members
  • Posts

    2,392
  • Joined

  • Last visited

  • Days Won

    62

Everything posted by Sim

  1. Great read @Magictallguy, great point in that read as well. My deepest and most sincere apologies to @Eurogangster.
  2. I suggest lowering your price @Eurogangster. I personally believe the mod isn't worth $20 especially with game owners having to edit any files. This is a great mod though!! I started one of these a couple days, so it looks like we will be in competition with this mod as well.
  3. Sim

    SimpleMMO

    I stumpled across this last night. https://web.simple-mmo.com/login I actually stumpled across it on the Android market. Game has some interesting features. The UI on web is much worst then Android. It looks like it uses mc code or GL or something very similar. Has almost thousand users online at one time
  4. Sim

    Game Advertising!!

    I wonder how many referral he got. @MNG to can always get him back and message all there members and tell them to make there own game and link them to marketplace.
  5. Mod is finished, it will be posted on the marketplace later tonight. To round it up before writing a large description. It shows what the users do. Each user has a link on the profile to go to there feed which shows only there actions. It's really easy to modify the color of the actions displayed as well as choosing which ones to display and not to display. Admins can also search for users by name or by id. While displaying each action. Every user name is clickable, every location is clickable, every theft and crime is clickable. One of the screen shots shows how to hide certain actions and changing the colors. Replace true with false to show or hide, and replace the color associated with the action. It took awhile to rest every action over and over and to make sure I got them. Edit: Released. It only took me an hour to type the description for the mod itself. #StillCodingOnCellPhone @Dave
  6. Sim

    Game Advertising!!

    Cash referral contest?
  7. I never doubted getting paid from the MWG marketplace ad I have been a member of this community for many years, but probably is always good to show those in doubt. Here's a screenshot.
  8. Sim

    Game Advertising!!

    @MNG even though it is possible he does pay a party in it, it's also possible he didn't. Accusing him personally isn't right. -The MWG Judge! (Lol/)
  9. Sim

    Game Advertising!!

    Send that to someone who doesn't know anything about any code. Add more sites, and only not send the message to the person he's sending it to. And still show no up in his inbox. Everyone always want to take the easy way out. I give you permission (like you need it), to use my mod name. I'll even but it if sold on market place though should be released for free.
  10. Sim

    Game Advertising!!

    Might be a nice mod to release. "The Spam Block Fool"
  11. Sim

    Game Advertising!!

    I would allow the user to keep thinking they are sending messages. Every message that has the url unistreets in it don't send to the receiver. Bit let him think he's sending it. Let him waste his time. ROFLMAO. That's the shit I would do if I had an active game. Blocking or banking the account won't do much good as he will just reregister. Edit:. @Andrew Washington said this "everyone receives users advertising on there game, all you had to do was fed them and move on. That’s something that’s always going to happen. ". Unfortunately, he's right. If unistreets stopped spamming, months later another game is going to start popping ip
  12. It's been awhile since I seen this topic have any posts. Got a gRPG game? Show it off. Share your link(s).
  13. Got a mc_codes game? Show it off. Share your link(s).
  14. More of a reason @Dayo needs to add the marketplace to the ACP of GL. πŸ™‚ i shouldn't forget where I came from. My first designs and code wasn't the greatest. My designs still suck. Don't give up. Your design needs improvement. @MNG post explains what I should have saif. My apologies everyone for acting very different then usual.
  15. I guess deformed would have been a better word. Retarded is a insult. Deformed is just not looking the normal. πŸ™‚
  16. How much time do you spend developing a day on average? Not including your job. Unless you make a living programming from home. I use to spend almost all day and night while awake doing any kind of development or learning. Now I try to spend not as much time and get involved in outside activities. I also try to go a whole day staying away from all coding, this is going to include avoiding communities like MWG during that day
  17. So I placed a few emojis in the color="" and I got this error unknown 🍎's in the system! Not sure if it was because of PHO, or the browser trying to render the emojis as color's. <div class="crime-holder" style="border: 1px solid 🍎">
  18. Just saying I went out of my way to take a screenshot to post it. It's his game, he should care more about showing people it then me. edit:πŸ™‚
  19. People don't know that. Screen shots should be posted on your site. There isn't nothing special about this game at all. A retarded layout. No unique features, no extra features besides what comes with GL.
  20. I was actually surprised when I seen this was not already released in the marketplace, so I decided to put it together.
      • 1
      • Like
  21. That is it. I tested it on above post. Back at the topic in hand. Yo do amazing work.
  22. There was a problem with the userAction hook bank.SendMoney It passed id as NULL. Old code: $actionHook = new hook("userAction"); $action = array( "user" => $this->user->id, "module" => "bank.sendMoney", "id" => $user->info->id, "success" => true, "reward" => $money ); New code: $actionHook = new hook("userAction"); $action = array( "user" => $this->user->id, "module" => "bank.sendMoney", "id" => $user->info->U_id, "success" => true, "reward" => $money ); There is a problem with the jail userAction hook. It passes the users rank you are trying to break out or jail instead of there id. On line 125 and line 151 code is: $action = array( "user" => $this->user->id, "module" => "jail", "id" => $user->info->US_rank, "success" => false, "reward" => 0 ); Can be replaced with this to fix: $action = array( "user" => $this->user->id, "module" => "jail", "id" => $id, "success" => false, "reward" => 0 ); EDIT: You spelled property like this on the property transfer hook. You definitely rushed these. :). At least you got m to thoroughly test your hooks. Don't worry I left a comment in my code. Lol //I'm forced to spell wrong for my code to work properly since @Dayo don't know how to spell property properly propety.transfer
  23. It's not there on mobile. You know what the it is? [Hidden]hidden tes contentt[/hidden] Edit: for spoiler test
×
×
  • Create New...