-
Posts
2,146 -
Joined
-
Last visited
-
Days Won
149
Content Type
Profiles
Forums
Events
Everything posted by Magictallguy
-
Change $userid to $i - that's why it's failing - you're using the wrong variable
-
You messaged me with this - I've already converted, reformatted and tested the code with your requested addition. Check your inbox. Also, [MENTION=68711]KyleMassacre[/MENTION], this topic needs moving to Engine Support :P
-
Thank you kindly :)
-
gRPG support has been added
-
@Zettieee and I have been working on this to get it to work with both v2 and v2.0.5b and we've confirmed it working on both platforms (with 1 uncomment for v2.0.5b). I can now also confirm that it works on gRPG There's a demo of it available here, an account will be required (it's entirely free to sign up) or you can use the demo (demo:demo) account Purchase info: All we're asking for is $20 and it comes with free installation (optional)! You can purchase from myself directly (I intend to add it to the MC Codes mod list) I accept PayPal ([email protected]) I need help! Support is offered to all who need it! Simply message me here and I'll respond within 24 hours Extendibility: BlueImp is fairly extendible, but I highly recommend reading through BlueImp's wiki first. Staff functions? The chat is designed to go based on the default MC Codes user_level permissions. (2 = admin, 3/5 = moderator, etc.) Administrators have all rights (as you would expect), which include kick/bans and view user IP (built-in) with room for more should you want them I've also wrote up a chat log for staff members (screenshot below) What else? There are multiple things this chat can do. From a simple roll of a die (or multiple, the choice is yours!) to ignoring other users or talking directly to them privately - a great feature for those who like to role play, or simply want to talk to each other using a method much faster than most games' in-built mail system. Users can also change their displayed name - though, in the demo version, I've disabled this feature.
-
Incorrect, that code is fine. Edit index.php, find any instance of $db->fetch_single , paste that and the surrounding five lines (from both sides) here.
-
New download mirror: http://magictallguy.tk/dl/chat_sniko.zip I've fixed the zip issue
-
Chat log is now in place - it also comes with jBBCode's Parser and a pagination class
-
Currently, there is no logging feature - I'd be more than happy to write one though :)
-
Your questions have been answered in the original topic. Also, sorry, I didn't want to steal your Pusher thunder :P
-
@Zettieee and I have been working on this to get it to work with both v2 and v2.0.5b and we've confirmed it working on both platforms (with 1 uncomment for v2.0.5b) I can now also confirm that it works with gRPG There's a demo of it available here, an account will be required (it's entirely free to sign up) or you can use the demo (demo:demo) account Purchase info: All we're asking for is $20 and it comes with free installation (optional)! You can purchase from myself directly (I intend to add it to the MC Codes mod list) I accept PayPal ([email protected]) I need help! Support is offered to all who need it! Simply message me here and I'll respond within 24 hours Extendibility: BlueImp is fairly extendible, but I highly recommend reading through BlueImp's wiki first. Staff functions? The chat is designed to go based on the default MC Codes user_level permissions. (2 = admin, 3/5 = moderator, etc.) Administrators have all rights (as you would expect), which include kick/bans and view user IP (built-in) with room for more should you want them I've also wrote up a chat log for staff members (screenshot below) What else? There are multiple things this chat can do. From a simple roll of a die (or multiple, the choice is yours!) to ignoring other users or talking directly to them privately - a great feature for those who like to role play, or simply want to talk to each other using a method much faster than most games' in-built mail system. Users can also change their displayed name - though, in the demo version, I've disabled this feature. Chat log
-
mccode-v2 Did somebody say ... Gang Ranks?
Magictallguy replied to Magictallguy's topic in Free Modifications
OMG ColdBlooded liked it! :D -
mccode-v2 Track Players' Actions - The Easy Way
Magictallguy replied to TheMasterGeneral's topic in Free Modifications
Oh, also.. "Donation Time"? -
mccode-v2 Track Players' Actions - The Easy Way
Magictallguy replied to TheMasterGeneral's topic in Free Modifications
ALTER TABLE user_pagelogs ADD string VARCHAR( 255 ) NOT NULL DEFAULT '', ADD extra TEXT NOT NULL; -- May want to change to LONGTEXT as your game increases $extra = serialize($_REQUEST); $db->query("INSERT INTO user_pagelogs (user, time, page, string, extra) VALUES (".$userid.", ".time().", '".$db->escape($_SERVER['PHP_SELF'])."', '".$db->escape($_SERVER['QUERY_STRING'])."', '".$db->escape($extra)."')"); Everything1 is logged. Use unserialize() in the log view - make sure to prevent it from parsing as code on output 1 Not actually everything, but most of it.. -
Staff panel here WARNING! This has been tested for parse errors only. Please report any bugs here
-
if($theUsersPassword != (md5($_POST['password']) || hash('sha512', $_POST['password']))) exit("Incorrect"); /* Edit - addition to what Dayo said! This part will need to go *below* $mem=$db->fetch_row($q); in authenticate.php */ if($theUsersPassword == md5($_POST['password'])) $db->query("UPDATE users SET userpass = '".hash('sha512', $_POST['password'])."' WHERE userid = ".$mem['userid']); No need to add anything to the database then. You may wish to increase the `users`.`userpass` from a VARCHAR to a TEXT
-
We all know MC Craps here, your reasons don't need to be said :P Agreed Most of the actual developers for hire here and more than capable of working under orders, we wouldn't get clients that way ;)
-
I can build it exactly how you want it. If you want it to be similar to MC Craps, then I can give you that. If you want something completely different, I may be able to give you that too (my ability is limited by my knowledge (as is everyone's)) I'd charge £5,000 - £6,000 for a full-fledged system with ease-of-use and ease-of-modification (and that includes the rights to the code..)
-
Repaired :)
-
Right, there is a way to fix that, but that means grabbing a local copy of the jQuery lib. Also, that's not what's causing the issue.. If you'd like, I'll take a look and see what I can find.
-
If you're using Firefox/Chrome, please enable the console and reload the page. Paste any error messages please
-
I would highly recommend using an SFTP program - FileZilla is completely free and will have everything you need :)
-
So, yeah, gang ranks.. I made a gang ranks module for DRCity (when it was still running) and, now that I have no use for it, I'm releasing it.. Here's the repo: https://bitbucket.org/Magictallguy/mc-codes-gang-ranks Knock yourselves out! Any issues, either post here and post a bug on the issue tracking (registration not required) Note: This one will require some coding on your end, but really not that much. You'll need to take a look at the SQL table to understand what needs to go where
-
Snippet updated, code tested, fully working - - - Updated - - - There's a minor issue that I didn't notice until now - please use the updated snippet