Jump to content
MakeWebGames

rockwood

Members
  • Posts

    425
  • Joined

  • Last visited

  • Days Won

    13

rockwood last won the day on February 22

rockwood had the most liked content!

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

rockwood's Achievements

Enthusiast

Enthusiast (6/14)

  • Dedicated Rare
  • Reacting Well Rare
  • Conversation Starter
  • First Post
  • Collaborator Rare

Recent Badges

25

Reputation

  1. are you using shared hosting? that is painful stuff XD
  2. i am there already
  3. wow
  4. JavaScript helps make frontend development simpler, more efficient, and visually appealing.
  5. awesome work
  6. I’m genuinely impressed he’s still active here. Much respect—cheers, bro, and Happy New Year!
  7. $data = []; $placed = []; foreach ($locations as $location) { // Hook $location = (new Hook("alterModuleData"))->run([ "module" => "travel", "user" => $this->user, "data" => $location ], 1)["data"]; // Map $map = (!empty($location['L_map']) && file_exists($location['L_map'])) ? $location['L_map'] : "themes/" . _setting('theme') . "/assets/img/pages/travel/map.png"; [$width, $height] = getimagesize($map); // Leader name $leader = "None"; if ($location['L_leader']) { $leader = (new Gang($location['L_leader']))->getGang()['name']; } // Random position (no overlap) $pos = $this->randomPosition($width, $height, $placed); $placed[] = $pos; // Result $data[] = [ "location" => $location["L_name"], "color" => $location["L_color"], "x" => $pos['x'], "y" => $pos['y'], "cost" => $location["L_cost"], "id" => $location["L_id"], "leader" => $leader, "cooldown" => $this->timeLeft($location["L_cooldown"]) ]; }
  8. merry Christmas
  9. Everyone’s still around 🙂🎮 Real life has us busy, and things have changed, but the passion for games and coding unique ideas is still here 💻🔥🕹️
  10. can i see yours game?
  11. i am the big hater of : global $db, $set;
  12. PHP is still going strong, and Laravel, combined with Breeze, takes it to a whole new level of simplicity and power.
  13. what kind of project you are doing?
  14. Glad to see MySQLi is still in use!
  15. I'm glad to see this community remains active and that most members are ready to support one another.
×
×
  • Create New...