Jump to content
MakeWebGames

Uridium

Members
  • Posts

    2,657
  • Joined

  • Last visited

  • Days Won

    74

Everything posted by Uridium

  1. 🙂
  2. Dont panic the help you gave me proves you want this venture to work im proud of ya
  3. Gets a thumbs up from me.. I like it 🙂 weldone
  4. ive been working on a Game for someone and have his script on my website as well as his own we both use makeweb as a host ye6 his Cronjobs wont run a script that my cronjob will all scripts are identical so i cant work out why my sites cronjob is running perfectly yet his isnt, I have used different methods for his crons to run but to no avail... has anyone got any ideas ??
  5. it does what ? lol
  6. V2 has more mods compared to V1 better structure
  7. for $50 you could purchase mccodes V2
  8. Ive never actually had a public MCCODES game but have developed plenty of mods for the engine
  9. now now children
  10. i'll gather the info again and get back to you
  11. I have had to fox 4 sites due to mods installed breaking the whole site or part site ??? CAN'T we have mods that have been tested ON an UNTOUCHED Installation so mods work within that Game.....
  12. we might need more staff lol
  13. ive just downloaded the engine and trying to set it up its not playing ball bare with me
  14. orsino post your INSERT section
  15. Uridium

    Delete

    Wow i remember working on this engine with ColdCola back in 2012 i think it was..
  16. it seems the underboss can remove themselves but the boss cannot remove them other than kicking them.. open up gangs.inc.php and add this >> /* start underboss removal */ public function method_removeUnderboss() { if (!$this->user->info->US_gang) return; $this->construct = false; $gang = new Gang($this->user->info->US_gang); if ($this->user->id != $gang->gang["boss"]) { $this->error("You dont have permission to do this!"); return $this->method_home(); } $id = $this->methodData->user; $newUB = new User($id); $oldUB = new User($gang->gang["underboss"]); if ($newUB->id && $newUB->info->US_gang != $this->user->info->US_gang) { $this->error("This user is not part of this gang!"); return $this->method_home(); } $update = $this->db->prepare("UPDATE gangs SET G_underboss = 0 WHERE G_id = :id"); $update->bindParam(":id", $gang->id); $update->execute(); if ($oldUB->id != 0) { $oldUB->newNotification("You have been demoted from underboss of " . $gang->gang["name"]); } $this->error("Underboss Removal updated", "success"); if ($newUB->id != 0) { $gang->log("was removed as the underboss", $oldUB); } $this->method_home(); } /* end removal */ after public function method_setUnderboss() section now open gangs.tpl.php and add {#if isBoss} <p> <button name="action" value="removeUnderboss" class="btn btn-block btn-default"> Remove Underboss </button> </p> {/if} after your setUnderboss class and your done if you notice on your gangs home page it says Gand Information you can change that word Gang to your gang name.. look for public $gangHome =' and from there just change {_settings "gangName"} to become {name} and your given gang name will appear dont alter the one for public $gangs = ' as that one is for the viewing of listed gangs
  17. Maybe its a tactical way for everyone to signup to his game and see what its like lol
  18. lol silly me 😉
  19. I dont think this argument needs to be public its obvious you are both grown up and can settle this in a better manner than doing it like this ?
  20. I found a few issues with the gangs and have made a few edits.... adds a back button to each page and fixes a few other issues with wrong text direction gangs.tpl.php
  21. This small edit will stop the Forum lists appearing on your left menu and there will only be one link to the forums to view all topics and cats Lines 1 to 31 need editing to that of the below code <?php new hook("customMenus", function ($user) { if ($user) { $forums = $user->db->prepare("SELECT * FROM forums ORDER BY F_sort ASC, F_name Limit 1"); $forums->execute(); $allForums = $forums->fetchAll(PDO::FETCH_ASSOC); $items = array(); foreach ($allForums as $forum) { $items[] = array( "url" => "?page=forum", "text" => "View Forums" ); } if (!count($items)) return array(); return array( "title" => "Forum", "url" => "?page=forum", "items" => $items ); } else { return false; } });
      • 2
      • Like
  22. blooody hell im 51 now lol
  23. you forgot to add require "../class/round.php"; to the install/index.php
  24. when you install a new theme from the theme manager once installed and you try View the theme you get an error message also the theme doesnt actually show when installed php lower and higher have same issue
  25. the 2.4.1 has an issue when installing a new theme and trying to view it you seem to get the old nbbc errors
×
×
  • Create New...