-
Posts
2,686 -
Joined
-
Last visited
-
Days Won
81
Content Type
Profiles
Forums
Events
Everything posted by Uridium
-
Only bit that Concerns me is the approach to giving out Crystals as a reward you may find your bug section filled up with duplicate entries for people trying to claim the reward
-
nah matey im not suggesting you didnt make the mod im just saying that if it had a link to fixed Bugs users would stop reporting same thing
-
I modified a bugreport from the freebie section and just like yours i realised you can delete bug reports which is fine but why not have it so Bugs that are repaired users can view from a FIXED BUGS link..
-
Ive had a copy of this on my PC which was sent to me by MDK666 last year so credit where credits Due. MDK666 :)
-
I tested your updated version
-
<?php //This mod is for v2 // CREATED BY BRAD include "globals.php"; $filename="response.txt";$words=file($filename);shuffle($words);$word=$words[0]; $question=($_POST['question']); $ask=" <form action=askghost.php method=POST>Question: <input type=text name=question> <input type=submit value=Ask></form>"; print "<h3>I know you</h3> Welcome to the the ghost home. Here you can type in a question about anything and the ghost will reveal the answer to you. "; if ($question=="") { print $ask; $h->endpage(); exit; } else { if ($question=="$question") { switch(mt_rand(1,1)) { case 1; echo'<h1>'.$word.'</h1>'; break; } } print "<hr />[b]$question[/b] "; print " "; print " [b]"; print "<table width=174 height=156 border=0 cellpadding=0 cellspacing=0> <tr><td background='title.png'><center>$pic</td></tr></table> ";//Background Pic print "$ask"; $h->endpage(); exit; } $h->endpage(); ?> Now create a txt file called response.txt and add as many outcomes as you want to
-
Ive recoded it a bit so you only have 1 case instead of 50 and can have up to a billion outcomes if you dont mind me posting it
-
Tested on v2 worked fine but outcomes need to be larger letters
-
Remove the stray ELSE on line 250 if your looking at it from here or line 198 if its on a text editor.. Then add } after return $in; } so it reads return $in; } } $h->endpage(); And it should work.. The else statement isnt needed...
-
<option value='Ware Wolf'>Ware Wolf</option> Should Be <option value='Werewolf'>Werewolf</option>
-
You really dont need to use fluent english with PHP as its the same routine for any country the only things that dont relate to englist is anything you use as a sentence example echo ' dfhjksdfhjksdjkfjksdfjk' or print " fjsdfjksdjkfhjksdhfjk " The rest will always be the same no matter what
-
One last Mod before i start me job :) USER PLANNER
Uridium replied to Uridium's topic in Free Modifications
Shhh lets not confuse him ;) -
Im confused is this V2 before any edits or after cos if its after id probably go back and start again. What exactly have you secured and who you trying to RIP OFF... if you can say this is worth $1000 then i suppose that means the next version of MCC should be worth about $5 ( Even with Addons ) Your selling tactics need more work as with your scripts. If its this easy does anyone want to buy my complete test sites files has 12 mods never been released all for a measley $5,000 ;) lol
-
One last Mod before i start me job :) USER PLANNER
Uridium replied to Uridium's topic in Free Modifications
How about i just make you my Bitch ;) -
One last Mod before i start me job :) USER PLANNER
Uridium replied to Uridium's topic in Free Modifications
Hmm this post was ages ago ive been to work since then lol -
Tutorial: v1 - v2 Conversion
-
Then ask for help im sure someone on here even myself will help out.
-
Or try the easy way Look over every file of MCC and see how its put together. How it add things to database how it calls for things from database then mix n match your scripts if it dont work try again start with small snippets and you'll soon be on your way Just as i did .
-
Whats the big fascination about competing with this site. Instead of competing against it make something thats Unique never been done and maybe the site your competing against may one day try to compete against you.
-
Update to this mod.. 1 = Recoded so users Cant type in full URL they only add the Video ID... 2 = All Videos that users add are set to PENDING mode for Staff to view before releasing as Public... 3 = Visual Update looks better... 4 = Now supports Media from most well used Sites ( And can be edited to aquire more ) FOOTNOTE I havent updated the script on the topic as yet will probably create a new one so as to not confuse people
-
That can be done also. Regards exsisting members a Link in loggedin will remedy that and will place them into a random group when they next login.
-
Its just an idea to get everyone on your game to stay playing longer and have some reason to play whilst they level up better to be able to join Gangs... Ive been working with and watching mcc long enough to Realise that its boring as hell and can be daunting on new members few more ideas.. 1 = new user is assigned a level 5 protector for first 2 weeks of game if the protector fails to protect the new user then they are deducted 10 protection points. ( HOWEVER ) if new user fails to login to game after 72 hours then the protector is released from their protection duties for this player...
-
Ok made an edit this $q = $db->query("SELECT offline, online, reason, hour, minute, timenow, maintpage FROM maintenance WHERE maintpage='inventory.php'"); $t = $db->fetch_row($q); $db->query("SELECT * FROM users WHERE maintpage='inventory.php'"); if ($ir['maintpage']==$t['maintpage']) { echo'<h1>Inventory Closed for Maintenance</h1>'; echo' <font size=3>'.$t['reason'].'</font> this Page will be back online in '.$t['hour'].' Hour(s) And '.$t['minute'].' Minute(s) Time from when page was Placed in Maintenance mode at [b]'.$t[timenow].'[/b]'; echo " Time Now: [b]".date('g:i:s a')."[/b]"; die(); } to this $q = $db->query("SELECT offline, online, reason, hour, minute, timenow, maintpage FROM maintenance WHERE maintpage='inventory.php'"); $t = $db->fetch_row($q); $db->query("SELECT * FROM users WHERE maintpage='inventory.php'"); if ($ir['maintpage'] && $t['maintpage']) { echo'<h1>Inventory Closed for Maintenance</h1>'; echo' <font size=3>'.$t['reason'].'</font> this Page will be back online in '.$t['hour'].' Hour(s) And '.$t['minute'].' Minute(s) Time from when page was Placed in Maintenance mode at [b]'.$t[timenow].'[/b]'; echo " Time Now: [b]".date('g:i:s a')."[/b]"; die(); } Working fine now for me...