-
Posts
2,657 -
Joined
-
Last visited
-
Days Won
74
Content Type
Profiles
Forums
Events
Everything posted by Uridium
-
🙂
-
[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 😉
-
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 ?
-
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
-
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
-
-
blooody hell im 51 now lol
-
you forgot to add require "../class/round.php"; to the install/index.php
-
The GL 2.4.1 free engine is pretty bloody good :)
Uridium replied to Uridium's topic in Gangster Legends
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 -
The GL 2.4.1 free engine is pretty bloody good :)
Uridium replied to Uridium's topic in Gangster Legends
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