Jump to content
MakeWebGames

rednspirited

Members
  • Posts

    113
  • Joined

  • Last visited

  • Days Won

    3

rednspirited last won the day on August 27 2019

rednspirited had the most liked content!

2 Followers

Recent Profile Visitors

1,809 profile views

rednspirited's Achievements

Enthusiast

Enthusiast (6/14)

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

Recent Badges

28

Reputation

  1. I have azh code, it's similar to gl codes. The issue I have is with the travel map. Cities are lined up in a diagonal line. I have 23 cities, I might add more later. i would like to get them so they are randomly placed throughout the map. was wondering how i could go about that. Already figured out how to change the spacing placement so it would show all 23, but making it random, I am unsure. This is the section of code I am dealing with. $locationsCount = count($locations); foreach ($locations as $key => $location) { $hook = new Hook("alterModuleData"); $hookData = array( "module" => "travel", "user" => $this->user, "data" => $location ); $location = $hook->run($hookData, 1)["data"]; if (!isset($location['L_map']) || !file_exists($location['L_map'])) { $map = "themes/"._setting('theme')."/assets/img/pages/travel/map.png"; }else{ $map = $location['L_map']; } list($width, $height) = getimagesize($map); if ($location['L_leader'] > 0) { $gang = new Gang($location['L_leader']); $gangs = $gang->getGang(); $leader = $gangs['name']; }else{ $leader = "None"; } $data[] = array( "location" => $location["L_name"], "color" => $location['L_color'], "x" => ($width / $locationsCount) * ($location['L_id'] / $locationsCount) + (75 * ($key + 1)), "y" => ($height / ($locationsCount)) * ($location['L_id'] / $locationsCount) + (35 * ($key + 1)), "cost" => $location["L_cost"], "id" => $location["L_id"], "leader" => $leader, "cooldown" => $this->timeLeft($location["L_cooldown"]) ); } I changed the 75 to 40 and the 35 to 20 in these lines "x" => ($width / $locationsCount) * ($location['L_id'] / $locationsCount) + (75 * ($key + 1)), "y" => ($height / ($locationsCount)) * ($location['L_id'] / $locationsCount) + (35 * ($key + 1)),
  2. i have used uridium's installer file above and still get stalled at that point
  3. i still get this and i have edited and used a couple different installer files but i get held up at this point
  4. Ok ty sorry to be pushy
  5. Is @Daveon vacation? I can not access the cpannel so i can use the hosting services.
  6. is there a charge to transfer a domain?
  7. this is an even better version than the first one thank you
  8. love this attack system works great and its more to what i was looking for. and thanks for being prompt in responding to my questions 🙂
  9. idea for a mod to be a staff note page for each player. this way you can know if there has been a warning given to a player or staff permission for more than one account on same ip. makes it easier to know whos actions to check for cash machining. who has cause a problem in the past etc.. have a small amount i can put for it who knows maybe others would like it too.
  10. hmmm hadnt noticed that one 🙂 ty
  11. also need a way to add npcs to the game Another good thing would be a comments section on players page
  12. well i will be getting the premium this week and i love the free version have some old mods and was wondering if they need updating or not? lots are yours but some are not im just waiting to see what doesn't come with premium.
  13. thanks i was told that got it done. i didnt think to check those files
  14. got the free version to start and get the ball rolling on some things as far as word changes but i can not find where Boss & Underboss are to change them to what i need can anyone help me?
  15. ok will get it next pay day thanks 🙂
×
×
  • Create New...