-
Posts
2,667 -
Joined
-
Last visited
-
Days Won
75
Content Type
Profiles
Forums
Events
Everything posted by Uridium
-
Im having a few problems finding the script on here i agree its hard to locate but im sure i called the script. ITEMS GET DAMAGED WHEN ATTACKED I'll keep looking for it
-
This type of mod has already been done for items that get damaged i made one a few months ago check forums
-
not sure SCR is correct on this one Alabama Unless its a typo.. SRC would be correct
-
Well done my son ;) Excellent addition nicely laid out and well worth the price. The editing aspects of this mod is emmense and will fit any criteria of MCC based games and can be used for other things other than the Friends Listing.. You can now have a blue peter's badge lol
-
I like this script so much i decided to do a bit of animation on the roulette wheel. overwrite you exsisting roulettewheel.gif with the above... As you can see its set for each board number so the flow is decent.. all i need to do now is add some kind of refresh so users dont have to click SPIN WHEEL and its done auto if that can be done... and if you want heres a reversed version of the same wheel Or if you want both animations in one then choose this..
-
Your coming round to my way of thinking by the time seanybob has added our addons there wont be a need for MCC we may just aswell play poker lol
-
Can i add a number 9 to my list of things to do :) 9 = Users can watch a table and chat but cant see cards only whats going into the pot.. OH and a 10 cos im on fire lol 10 = Add a friend from the pokerroom so you can fnid them instantly when they are in a game and join them...
-
Why make one when Seanybob has created something Exceptional at a very reasonable price with Addons... I dont know your coding style and forgive me if i speak out of term but seanybob is well respected as a script writer so you would have to make your mods 300% better than his for people to take notice.. No Offence by the way..
-
It was tested on Bludclarts site... Regards the 4 issue on his site the error occurs after the error with the unable to FOLD so for example if the table DEALER leaves the table then no other player is declared the Dealer. or if someone folds and everyone leaves the table the 4 error occurs..... I would add a few more options one being that 1= users cant leave the table whilst sat unless they fold, the LEAVE button at moment is visible througout the game.. 2= Ability if possible to see which players are sat at which table before you join a table. 3= also an ability for users who create a new table to Edit the table incase of mistakes... 4= If the delaer leaves the table then person nearest left is give Dealer status (this seems to cause issues if dealer suddenly leaves) 5= height of table to fit into the screen im using 1024 x 750 Res and have to scroll if im sat at bottom of table. 6= Some issues with refresh cause people to lose a turn if all images on screen hasnt loaded in time.... 7= when buying chips this should be done at the table rather than the join screen. 8= Because of the refresh rate i dont think the chat is adequate enough and could be used as a popup box..... just a few things... other than that its a great mod..
-
After testing this mod i found Numerous issues which i'll try to list... POT Cash doesnt update correct and found it decreases and increases when ever it wants... When a player folds and the game is over they are still classed as folded on the dbase so no game can start until they have been reset... pokrooms dbase isnt being updated correctly so players are left in limbo until you manually reset them....
-
Yes i know this has been done where you forget your pass and have to goto a LOST PASSWORD link for an email to be sent just to say that you have to change your password to the one its given.. This annoyed the hell out of me and found sometimes it wasnt 100% workable.. So how about just getting your old password back which too me sounded better.. and saves a lot of time... I'll post up the code in a few as ive made some drastic edits.
-
remove require "globals.php"; from all the voting pages its not needed if global_func is being called..... Will also cure the error JDS is havng
-
If its anything like thr Bigmac me and my daughter had last night id ask for a refund lol I kicked up a stink and got 2 free bigs macs lol
-
Not yet i'll get round to doing it
-
50% off $1 you might aswell give it away free ;)
-
there is no EDIT function yet but when i get chance i will add one
-
This Mod which is small will wllow the owner to setup their Meta Tags so Search Engines can find your game quickly aswell as users who type in a words into say google.. SQLS [mysql]CREATE TABLE IF NOT EXISTS `meta` ( `metaid` int(11) NOT NULL auto_increment, `charset` varchar(10) NOT NULL default 'UTF-8', `authorname` varchar(90) NOT NULL default '', `copyright` varchar(90) NOT NULL default '', `slogan` varchar(255) NOT NULL default '', `keywords` text NOT NULL default '', PRIMARY KEY (`metaid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1;[/mysql] Call this file staff_meta.php <?php include "sglobals.php"; if($ir['user_level'] <= 1) { die(); exit; } switch($_GET['action']) { case 'newmeta': new_meta_form(); break; case 'newmetasub': new_meta_submit(); break; default: print "Error: This script requires an action."; break; } function htmlspcl($in) { return str_replace("'", "'", htmlspecialchars($in)); } function new_meta_form() { global $db,$ir, $c; if($ir['user_level'] != 2) { die("403"); } print "Adding a new Meta Tag. <form action='staff_meta.php?action=newmetasub' method='post'> <table border'1' bordercolor='#FFCC00' style'background-color:#FFFFCC' width'400' cellpadding'3' cellspacing'3'> <tr> <td>Character Set: = <input type='text' name='charset' /> Usually UTF-8</td> </tr> <tr> <td>Author name: = <input type='text' name='authorname' /></td> </tr> <tr> <td>Owner Copyright: = <input type='text' name='copyright' /></td> </tr> <tr> <td>Site Slogan: = <input type='text' name='slogan' /></td> </tr> <tr> <td>Keywords: <textarea rows='7' cols='50' name='keywords'></textarea> enter words to be found by the searchengine example mygame, mmorpg, and add plenty more</td> </tr> </table> <hr> <input type='submit' value='Create New Meta Tag' /></form>"; } function new_meta_submit() { global $db,$ir,$c,$userid; if($ir['user_level'] != 2) { die("403"); } if(!isset($_POST['charset']) || !isset($_POST['authorname']) || !isset($_POST['copyright']) || !isset($_POST['slogan']) || !isset($_POST['keywords'])) { print "You missed one or more of the required fields. Please go back and try again. [url='staff_meta.php?action=newmeta']> Back[/url]"; $h->endpage(); exit; } $db->query("INSERT INTO meta (charset, authorname, copyright, slogan, keywords) VALUES( '{$_POST['charset']}', '{$_POST['authorname']}', '{$_POST['copyright']}', '{$_POST['slogan']}', '{$_POST['keywords']}')"); print "<hr><h2>Meta Tag <font color='blue'> Created!</font>"; } $h->endpage(); ?> Now open up header.php and under the global add $q = $db->query("SELECT charset,authorname,copyright,slogan,keywords FROM meta WHERE metaid=1",$c); $t = $db->fetch_row($q); In the same file where the <html xmlns="http://www.w3.org/1999/xhtml"> Is underneath add <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset={$t['charset']}"> <META HTTP-EQUIV="EXPIRES" CONTENT="0"> <META NAME="RESOURCE-TYPE" CONTENT="DOCUMENT"> <META NAME="DISTRIBUTION" CONTENT="GLOBAL"> <META NAME="AUTHOR" CONTENT="{$t['authorname']}"> <META NAME="COPYRIGHT" CONTENT="{$t['copyright']}"> <META NAME="KEYWORDS" CONTENT="{$t['keywords']}"> <META NAME="DESCRIPTION" CONTENT="{$t['slogan']}"> <META NAME="ROBOTS" CONTENT="INDEX, FOLLOW"> <META NAME="REVISIT-AFTER" CONTENT="1 DAYS"> <META NAME="RATING" CONTENT="GENERAL"> now opene smenu.php and add > [url='staff_meta.php?action=newmeta']Create Meta Tag[/url] And thats it makes finding your site on search engines a lot easier...