Jump to content
MakeWebGames

Uridium

Members
  • Posts

    2,691
  • Joined

  • Last visited

  • Days Won

    85

Everything posted by Uridium

  1. Uridium

    AzH2-GL2

    your Discord doesnt work > @alizharb#4796 or alizharb#4796
  2. Uridium

    AzH2-GL2

    Cheers Im regd now 🙂
  3. Uridium

    AzH2-GL2

    First URL just keeps loading your second URL alizharb.makewebgames.com Account Suspended This Account has been suspended. Contact your hosting provider for more information.
  4. Iv'e decided to start making mods again for MCCODES I'm sure there are people out there still using this fab engine I recently made a MAINTENANCE MODE mod which i kinda improved on abit during the last few months and will share the updated version which now has "months days hours minutes" I have a few ideas for other mods or upgrade on the mods ive already made.. Some mods will be FREE and some PAID I have to start putting food on the table after a horrible 2020/21....
  5. I know times change and as you get older you start creaking and looking uglier Am I the only person who wishes we could rewind the clock back ( I was going to say WIND BACK THE CLOCK but it looked to much like wind ) Cant remember when I joined this fab forum think it was 2009 or something like that could have been later. But back then the forums where a flurry of activity as soon as you posted anything new, there was 10 - 30 comments within the hour and I kind of miss all that. Its great that MWG is back but so many of my buddies didn't come back with it and thats kinda sad. Even during the days of Criminal Existence. I still remember writing my first ever script for MCCODES it was the Edit Itemtype and the feeling of pure satisfaction knowing it worked and that I'd written the script for others to use. I'm not sure how many Mods ive written since that time but I think its near on 40, Im 51 now getting an old fart but still missing the people that made CE / MWG a success.....
  6. behind every mod is an idea to begin with so if your wanting someone just for ingame ideas than im ya cat 😉
  7. I did manage to fix this issue but damn it took a long time to do...
  8. 🙂
  9. Dont panic the help you gave me proves you want this venture to work im proud of ya
  10. Gets a thumbs up from me.. I like it 🙂 weldone
  11. 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 ??
  12. it does what ? lol
  13. V2 has more mods compared to V1 better structure
  14. for $50 you could purchase mccodes V2
  15. Ive never actually had a public MCCODES game but have developed plenty of mods for the engine
  16. now now children
  17. i'll gather the info again and get back to you
  18. 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.....
  19. we might need more staff lol
  20. ive just downloaded the engine and trying to set it up its not playing ball bare with me
  21. orsino post your INSERT section
  22. Uridium

    Delete

    Wow i remember working on this engine with ColdCola back in 2012 i think it was..
  23. 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
  24. Maybe its a tactical way for everyone to signup to his game and see what its like lol
  25. lol silly me 😉
×
×
  • Create New...