Jump to content
MakeWebGames

Uridium

Members
  • Posts

    2,657
  • Joined

  • Last visited

  • Days Won

    74

Everything posted by Uridium

  1. DAYO has inboxed me his Idea for the halloween competiton anyone else wishing to take part remember to INBOX me your idea before you start scriptwork on the mod.
  2. Im not using lite i use v2 but you can have my msn nightdreamer2000 AT hotmail DOT com
  3. are you using MCCODES lite v1 or v2 if its V2 your using i'll post up an unedited copy
  4. cheers matey dont forget to INBOX me with your IDEAS before you start posting... :)
  5. Yes its true the ghouls and ghosties are drawing ever near and it doesnt leave a lot of time to start casting your imagination into a nice Mod for a v1 or v2 so just to get this forum back into some kind of Normailty im will to pay £10 yep 10 whole GBP for a FREE mod placed on here that captures the glory of halloween this will be a contest and the persons Mod who gets the most THUMBS UP in the posts when counted i will PAY YOUUUUUU the £10 direct to your paypal... Some TOCs 1 = Must be Original and not one or parts from any that have been used here FREE or PAID on MWG 2 = Must be easy for a newbie to install and get running 3 = Anyone can enter the competition dont think cos a coder is better than you that they are bound to win. 4 = If your using any Graphics in the Mpd they must be of your OWN making and not GOOGLED ya lazy gits ;) 5 = The Duration of the Mod has to be able to withstand 1 weeks worth of use on a site.. 6 = The winner will be declared on the day AFTER halloween so your mod needs to be ready a week and half before so users can put it on their site..... 7 = The theme of the mod must be that so ages 13+ can use it and not adult orientated..... 8 = Mod creator must have a valid Paypal Address. 9 = Mods must be fully tested for flaws and broken links before being posted on the FREEBIE section of MWG 10 = You are allowed 2 EDITS to your Post when your Working copy is posted EDITS over 3 is an instant fail of that mod.... Good luck all Oh and too make things fair i will not be taking part for this event... FOOTNOTE: Users who are wanting to take PART must INBOX me with their IDEA for the MOD and stick with that idea for the duration of the Contest if you need to alter any part of your IDEAS you will need to INBOX me again quoting which of the IDEAS your planning on UPDATING.... Keep yer eyes on the lovely tenner ;) CASH CONTRIBUTORS SO FAR 1 = ILLUSIONS [ £10.00 ) SCRIPTERS SO FAR 1 DAYO 2 WAZAM 3 NICKSON
  6. Ok some links on MWG are broken for the FREEEEEEEBIES SECTION so if you come across a URL like this in the free mods   makewebgames.io/game-engines-and-modifications/mccode-dbscode-game-engine/free-plugins/27243-mccodes-v2-advanced-schooling-includes-days-clicks-money-or-crystals/ then remove the mccode-dbscode-game-engine/free-plugins/ and replace with board791/ so it looks like the below   makewebgames.io/board791/27243-mccodes-v2-advanced-schooling-includes-days-clicks-money-or-crystals/
  7. Uridium

    Need info

    Another page saying i do Graphics... I dont do graphics never have i did a Theme Creator that was based on CSS layouts..
  8. I dont do Graphics i cant even draw on microsoft paint lol I did make a mod for MCC called Theme Creator but that was just based on CSS layouts.......
  9. in your Items SQL create a new field called combined then you will need to alter your staff_items.php to also include an inputted combine number for the item that you want that one to combine to.. Example you make 3 new items called Plectrum and String and Guitar Give all the usual stats to each item And when combined Gives Guitar+Plectrum+String + stats for each
  10. Quoted from Jordan Palmer   Your absolutely right Jordan but the fact remains it was them that asked us in the first place for feedback And how many here Suggested that AH lets make MWG so MCC boards are scattered everywhere ? Cos i cant remember asking for them..
  11. I think the only difference with mine apart from DJ's is if a users account gets deleted from the system instead of an error for that user appearing it will class his/her link as Invalid User and their name becomes unclickable without the need of an if statement in any pages that try to locate users. just cleans things up a bit more and saves hassle later on,
  12. Everyone that ever left MWG has come back and the main reason for this is because its like home. So to Dabomchew and COLDBLOODED ( at least i spelt your name right ) this is for healthy reading.. We understand your creating a V3 version of mccodes and are probably fecking it up as we speak. Since youve been here weve seen changes ( we wasnt exactly asked how we felt about it ) but you changed them anyway So heres my IDEAS 1 = Quit pissing about with the forums and concentrate on your game 2 = Weve been here long enough to understand what works and what doesnt so get feedback from us. 3 = The name is ni the title MAKE WEB GAMES all i can see from your forums is how to ADD mods to MCCODES 4 = There are no sections on an ( a - z ) of building a game 5 = We create mods for others cos we want to yet even sometimes its nice to be rewarded for our efforts not just from the public but from you guys 6 = The sites looking a bit Clostrophobic with the mention of MCCODES everywhere either make it an MCCODES only site and quit wasting our time saying its a site for every web based game to use... Ive got more ideas but i'll probably be banned or this thread deleted after this...
  13. Not really jordan you have to concider how many files link back to a users profile this method will insert the url for the user in one move ". finduser($r[userid]) ." so when ever you have a mention of say $username by adding the above it will instantly become a link
  14. as ive never had the need for a SEC or MOD on my test site im not sure what the actual user_level is so if someone could post up the user_level numbers with what they are for it would be great,,, i know 0 = NPC 1 = User 2 = ADMIN not sure about rest
  15. Couldnt think of any other name for the subject other than usernames.. How many links like these do you think are scattered around your scripts   [url='viewuser.php?u={$r[']{$r['username']}[/url]   and when your viewing your userlist everyones name is the same colour which kinda makes it hard to decipher whos who... Insert the code below into your global_func.php file and you can now make like easier for yourself   function finduser($userid = "", $url = true, $includesystem = false, $color = true) { if ($userid == 0 && $includesystem) return "<span style=\"color: #ff0000; font-weight: bold;\">SYSTEM</span>"; global $db, $ir, $r, $c, $h; $res = $db->query("SELECT username, user_level FROM users WHERE userid = $userid"); $row = mysql_fetch_array($res); $a1 = ""; $a2 = ""; if (!$row) return "Invalid ID"; elseif ($row[username]) { if ($url) $a1 = "<a href=\"viewuser.php?u=$userid\">"; $a2 = "</a>"; $name = $row[username]; } else { if ($url) $a1 = "<a href=\"viewuser.php?u=$userid\">"; $a2 = "</a>"; $name = $row[username]; } /// below lines are just for user and staff colours if (!$url && !$color) return $name; if ($row[user_level]) { switch ($row[user_level]) { case '0': return "$a1<span style=\"color: #abcabc;\">$name</span>$a2"; break; // 0 being NPC case '1': return "$a1<span style=\"color: #000000;\">$name</span>$a2"; break; // Normal Game User case '2': return "$a1<span style=\"color: #ff0000;\">$name</span>$a2"; break; // ADMIN case '3': return "$a1<span style=\"color: #00aaaa;\">$name</span>$a2"; break; // NOT SURE case '4': return "$a1<span style=\"color: #00aa00;\">$name</span>$a2"; break; // Havent got a clue case '5': return "$a1<span style=\"color: #aa0000;\">$name</span>$a2"; break; // from 3 to here must be either helper mod or sec just dont know ;) } } elseif ($row[donatordays] > 0) return "$a1<span style=\"color: #2929ff\">$name</span>$a2"; else return $a1 . $name . $a2; }   Now when you come across a statement like   [url='viewuser.php?u={$r[']{$r['username']}[/url]   change it to   " . finduser($r[userid]) . " /* for every user or change to */ " . finduser($ir[userid]) . " /* If its for the user viewing the page */   It will also colour co-ordinate the user so other users can see whos an ADMIN, SEC, MOD, or NPC and those that have donator days you can change the colours as you wish..
  16. Well im honestly touched cheers guys :) its always nice to make a mod and even better when it gets a good reception/review as your aware ive never owned a running mccodes game but i have joined a fair few games from people on here and tried to work out what id like to see in a game.. But i have to be honest some of my mods were joint efforts from some of the great people on here so everyone on here deserves some reognistion :) Again though thank you :)
  17. Uridium

    Website!

    I have to say this is where i started life on the good old HTML tehre are some excellent help sites out there dreamcoder dont be afraid to use them As from what i can see for your first attempts your doing a great job. I certainly have faith in your creating something unique because from what ive read and seen here your not one to give up easily...   Excellent weldone :)
  18. Uridium

    Website!

    try nt to leave spaces ni your file names example BAD we love to rock.jpg GOOD welovetorock.jpg
  19. try changing mysql_num_rows to mysql_fetch_assoc and see if that helps
  20. opening and closing tags is sometimes a good thing especially when using net beans as you can insert html into a html section but not from an echo ;) if your using netbeans its a god
  21. is decio the dead guy that died on msn and was re-incarnated into someone even dumber ?
  22. Dayo your welcome to add any of my mods to your list as and when you wish too...
  23. ok ive decided with both being level i get the final say so for everyone who voted thanks and ive taken everyones comments onboard and came to the conclusion this mod will be a Paid mod 5 customers at a price of $5 and any future updates i make for this mod they will receive at no extra cost..
  24. on this you can use the $rand1 and $rand2 to echo values of Hex codes to see which best fits the colours for your game. example: if($line%2 == 0) print "<tr bgcolor=#$rand1> hex value for rand1 is #$rand1"; else print "<tr bgcolor=#$rand2> hex value for rand2 is #$rand2"; Then just copy the hex codes its gives and change both $rand1 and 2 to the hex of your choice.
  25. ive never heared of him to be honest...
×
×
  • Create New...