-
Posts
2,691 -
Joined
-
Last visited
-
Days Won
85
Content Type
Profiles
Forums
Events
Everything posted by Uridium
-
your Discord doesnt work > @alizharb#4796 or alizharb#4796
-
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.
-
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....
-
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.....
-
behind every mod is an idea to begin with so if your wanting someone just for ingame ideas than im ya cat 😉
-
I did manage to fix this issue but damn it took a long time to do...
-
🙂
-
[SPADE] SPADE Engine is Officially Released!
Uridium replied to gamble's topic in Other Game Engines
Dont panic the help you gave me proves you want this venture to work im proud of ya -
Gets a thumbs up from me.. I like it 🙂 weldone
-
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 ??
-
it does what ? lol
-
V2 has more mods compared to V1 better structure
-
for $50 you could purchase mccodes V2
-
Ive never actually had a public MCCODES game but have developed plenty of mods for the engine
-
now now children
-
we might need more staff lol
-
ive just downloaded the engine and trying to set it up its not playing ball bare with me
-
orsino post your INSERT section
-
Wow i remember working on this engine with ColdCola back in 2012 i think it was..
-
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
-
Maybe its a tactical way for everyone to signup to his game and see what its like lol
-
lol silly me 😉