Jump to content
MakeWebGames

rockwood

Members
  • Posts

    419
  • Joined

  • Last visited

  • Days Won

    12

rockwood last won the day on December 30 2025

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

23

Reputation

  1. $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"]) ]; }
  2. merry Christmas
  3. 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 💻🔥🕹️
  4. can i see yours game?
  5. i am the big hater of : global $db, $set;
  6. PHP is still going strong, and Laravel, combined with Breeze, takes it to a whole new level of simplicity and power.
  7. what kind of project you are doing?
  8. Glad to see MySQLi is still in use!
  9. I'm glad to see this community remains active and that most members are ready to support one another.
  10. I used to code for the community, but life got pretty busy. Now I’m ready to dive back in—and if anyone’s interested in joining, I’d be really happy to collaborate. I’m restarting the project and plan to be super active with it!
  11. looks impressive
  12. welcome here Ollie
  13. really?
  14. Nice.
  15. V2 is slightly better than V1, but it still needs significant improvements. However, it’s a good fresh start, and we need to work harder on it.
×
×
  • Create New...