Jump to content
MakeWebGames

Sim

Members
  • Posts

    2,392
  • Joined

  • Last visited

  • Days Won

    62

Everything posted by Sim

  1. People are still purchasing mccode mods
  2. I thought I replied to that
  3. It looks like some of my ideas finally paid off. I hope all our mods still work. The templating engine does need some upgrading. That text of yours finally paid off
  4. Sim

    Alpha Criminals

    SMH, I did it again. I downloaded an old file on my phone loosing my new code for the mug module, it was a few minor fixes away from being complete. Back to writing the function and formula SMH, I did it again. I downloaded an old file on my phone loosing my new code for the mug module, it was a few minor fixes away from being complete. Back to writing the function and formula Edit: done. I decided to keep things really some until I figured it exactly how I want to create my formulas and determine how much cash should be taken from a player. Such as what stats, skills, item types will be included. Here's you're I did it but. I know y'all look my info message for if a player takes all the other players money $modifier = $user->char->UC_lvl * 10; $chanceBonus = $user->char->UC_lvl * 2; $chance = 48 + $chanceBonus; $dice = mt_rand(1,100); if($dice => $chance) { die($this->page->buildElement('error', array("text" => "You failed to mig $victimURL's character " . $userToMug->char->UC_charName . "!"))); } $lowAmount = 1 * $modifier; $highAmount = 10 * $modifier; $amount = mt_rand($lowAmount, $highAmount); if($userToMug->cash < $amount) { $amount = $userToMug->cash; $html = $this->page->buildElement('info', array("text" => "You took $victimURL's character " . $userToMug->charName . " broke!! I would be proud of myself!!"))); } $this->user->charAdd($amount, "UC_cash"); $userToMug->charSubtract($amount, "UC_cash"); $html .= $this->page->buildElement('success', array("text" => "You successfully mugged $victimURL's character " . $userToMug->charName . " stealing $amount from them.!"))); A mug link is also on players profiles. I will finish that part up tomorrow since you can't actually mug a pair. You must mug a players character. But the function to display all players characters has already been created, so just need to handle get request to call it. I could have done did it instead of typing. But off to sleep. Long day of work tomorrow. Hopefully I can get more things accomplished tomorrow
  5. What is your best earning month on the marketplace if you don't mind sharing. Mine would have been the month of June where I made aprox: $220.
  6. You mean poll or pools? I swear I thought he was talking about some cool mod at first @PHPStudent he said it like 10x
  7. I have not recieved it
  8. Looking forward to what? Did I miss something
  9. When a user tried to kill you, the equiped armor getsb added to defense, the attackers equipped weapon goes to attack power.
  10. Your post does not make much sense. Pool mod to add to forum? What you mean copy paisting mc codes?
  11. I would rather not have had to edit any fileto get the item mod to work, but now that I know this i can make proper changes. Can these functions be used in the admin panel
  12. Sim

    Game icons

    I use this sure for now. https://game-icons.net/
  13. Anyone happen to have a poll mod code? I'm trying not to create one but could use one.
  14. Why you got haha smiley on him ? You do any content work @Samurai Legend
  15. That's pretty awesome @ags_cs4 I did not know that. Son creating a function inside a hook file allowed you to use it inside any module?
  16. That sounds like a very awesome thing
  17. I do it cause I don't have the money to purchase any netbook, laptop or PC. I am actually getting find of using my phone. Im able to code on bus stops, the bus. In between driving from jobs while at work. Could you imagine bringing a laptop to work doing home improvement and start coding while driving from job to job? I am use to it now sorry of. It's not slower. And my eyes struggle after staring at this little screen for hours on end.
  18. It all makes sense on why I had no purchases when there was so much hype and now I ain't had no messages at all regarding it.
  19. Wow, what is wrong work everyone not owning smart phones?
  20. 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
  21. 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
  22. 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.
  23. 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.
×
×
  • Create New...