
YoungGold
Members-
Posts
937 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Everything posted by YoungGold
-
I'm considering getting back into the market; but re-inventing the Text-Based RPG Game to be Web3 Related, it's own Native token / currency on the Polygon Network. I'll likely start from a base V1 McCodes source code I have but completely revamping it visually & on the backend; ultimately by the time I am done I wont even call it an McCodes game. (Just trying to save myself time as it's not as if i have a lot as it is) My plan would be to launch the game and slowly integrate the Web3 elements into it along the way to ease the player into adopting this type of technology but not be dependant on it to play. I'd be open to have conversations with people if they are interested in getting involved & perhaps have Web3 experience.
-
Nice! Hey bro, nice work on this, i really like it. Clean and simple but straight to the point is the way forward Keep up the good work! -Yg
-
Well.. its a start i suppose, Look at various high quality games and look at there layouts, Then look at yours. Then make neccesary changes.
-
well i can provide a logo and possible symbol designs for your game if you are looking for that of course. hit me up and ill try and sort something out with you and let you know if im capable or willing to do it for ya. -Yg
-
Well as some of you may already know im back to see whats happening after the new take over. Some of you may remember from back in the day when it was known as CE Now UnitedCriminal is going to be a good challenge for me where i hope to widen and improve on more coding skills, considering i am more of a Designer than developer im going to find it pretty challenging to make a half descent successful game but i can only try :) I hope to make my game different it will feature a McCode v1 source but by the end of it i doubt your recognize it as a mc game, i hope to bring many real life features into for example a real time real life stock market where the stock market mod will be an exact replica and a real time stock market to make the game more realistic as well as featuring a lot of real life features which im not going to tell :P But anyway i cant tell yo exactly what i want to accomplish with my game because at the end of the day it will rely on its members and what they want so i can never be sure of where it will take me. All im going to say is it will not be released until it is extremely advanced and up to standards with the new trends and features :D there will be no game like this...i will make sure of it, until im sure it will not be released :D i do plan on working on this project on my own but you never know i may take on a few developers, we shall see how it goes. -Yg
-
Heya guys, well yeh im back and im wanting to showcase some of the work that i have been up to im my long absence, why dont you go on over to this website where it shows my profile and all of the logos that i have created for clients. Unfortunately i just haven't been good enough compared to the other designers there because i lack experience and programs lol, but please head on over there and let me know what you think of my work, please only positive criticism any negative criticism is not wanted. LogoSauce | YoungGold's Portolio :thumbsup: -Yg
-
OR you can try me and see what i can do :) Hit me up with what you want and how u want it, some examples maybe and ill let you know. :)
-
Well, its still a working progress for god knows how long but i leave school in a week so 3 months solid work on it and getting it up to speed should help a bit, be sure to check it now and again and there will be a lot of changes. :)
-
Re: YoungGold.co.uk V2 yeh i am aware of those problems and im tryna work it out, any fixes are appreciated if you know how to solve it easily.
-
Meh i got a little bored, so i re-designed younggold.co.uk NOTE: not all of the pages have been coded and im workin on it, i juts want the focus on the design
-
Re: New Look Hmm....it looks pretty damn good im loving the scroll, what may make it look better is to take away the border and have everything fading into the background, the border just looks out of place....and ofcourse change the Register now part :L good work
-
Re: cod4 online meh considering i was so bad at cod4 im alot better on cod5 10th prestige 65 :P was top 3500th but due to my xbox breaking im like ranked 5600 in score...1mill score btw :D
-
Re: Magazine Cover congrats
-
okay well my login page is based on 3 parts, 1.Header 2.Content 3.Footer my problem is for the content i have a <?php switch($_GET['id']) function which calls each page for the content. however when i load say the register section the header and footer are in place where they should be but because the register form is larger than the gap it has it goes underneath the footer and i can just see the >Go back link at the bottom of my footer, anyone know why or know a fix on how to make the page stretch? /------------------------------------------/ Header /*----------------------------------------/ Content register blah blah blah /*--------------------------------------/ Footer /*---------------------------------------/ >Go back
-
Re: Zebra Styled Tables Thanks, the ++$tr worked but you forgot the ; after it so it should be ++$tr; Thanks all.
-
Re: Magazine Cover Yea, i know im starting to be more active now and work on my game, Where it says and i quote Just under the NME logo.
-
Re: Zebra Styled Tables ill note that thank you, ive only just started and don't really care for your comment on what i know! P.s thankyou Hauted Dawg and Lithium for staying on topic and helping me, much appreciated $bg = ($tr % 2) ? '#000000' : '#FFFFFF'); displays an error i got over it by removing the last ')' before the ; also <tr style="background: ".$bg.";"> displays a T_STRING error so u have to remove the first and last ' " ' to solve it After installing all that happened was the background changes to white in the table no zebra effect, i will try and fix it but if you know the fix please post it!.
-
Okay now ive seen these style tables before and ive been looking to put the same thing on my game however i cant find any examples where you can use the "odd" and "even" technique to distinguish the stripes where you select the users from the db, all the examples i see are where the data is manually put it. and i have no clue on how i could do it, Userlist.php V1 <?php /*----------------------------------------------------- -- Mono Country v1.0 BETA -- A product of DBS-entertainment -- Copyright held 2005 by Dabomstew -- INDEX.php -----------------------------------------------------*/ session_start(); require "global_func.php"; if($_SESSION['loggedin']==0) { header("Location: login.php");exit; } $userid=$_SESSION['userid']; require "header.php"; $h = new headers; $h->startheaders(); include "mysql.php"; global $c; $is=mysql_query("SELECT u.*,us.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid WHERE u.userid=$userid",$c) or die(mysql_error()); $ir=mysql_fetch_array($is); check_level(); $fm=money_formatter($ir['money']); $bm=money_formatter($ir['bankmoney']); $cm=money_formatter($ir['crystals'],''); $lv=date('F j, Y, g:i a',$ir['laston']); $h->userdata($ir,$lv,$fm,$bm,$cm); $h->menuarea(); $_GET['st'] = abs((int) $_GET['st']); $st=($_GET['st']) ? $_GET['st'] : 0; $by=($_GET['by']) ? $_GET['by'] : 'userid'; $ord=($_GET['ord']) ? $_GET['ord'] : 'ASC'; print "<h3>Userlist</h3>"; $cnt=mysql_query("SELECT userid FROM users",$c); $membs=mysql_num_rows($cnt); $pages=(int) ($membs/100)+1; if($membs % 100 == 0) { $pages--; } print "Pages: "; for($i=1;$i <= $pages;$i++) { $stl=($i-1)*100; print "[url='userlist.php?st=$stl&by=$by&ord=$ord']$i[/url] "; } print " Order By: [url='userlist.php?st=$st&by=userid&ord=$ord']User ID[/url] | [url='userlist.php?st=$st&by=username&ord=$ord']Username[/url] | [url='userlist.php?st=$st&by=level&ord=$ord']Level[/url] | [url='userlist.php?st=$st&by=money&ord=$ord']Money[/url] [url='userlist.php?st=$st&by=$by&ord=asc']Ascending[/url] | [url='userlist.php?st=$st&by=$by&ord=desc']Descending[/url] "; $q=mysql_query("SELECT u.*,g.* FROM users u LEFT JOIN gangs g ON u.gang=g.gangID ORDER BY $by $ord LIMIT $st,100",$c); $no1=$st+1; $no2=$st+100; print "Showing users $no1 to $no2 by order of $by $ord. <table width=75% border=2><tr style='background:gray'><th>ID</th><th>Name</th><th>Money</th><th>Level</th><th>Gender</th><th>Online</th></tr>"; while($r=mysql_fetch_array($q)) { $d=""; if($r['donatordays']) { $r['username'] = "<font color=red>{$r['username']}</font>";$d="[img=donator.gif]"; } print "<tr><td>{$r['userid']}</td><td>[url='viewuser.php?u={$r[']{$r['gangPREF']} {$r['username']} $d[/url]</td><td>\${$r['money']}</td><td>{$r['level']}</td><td>{$r['gender']}</td><td>"; if($r['laston'] >= time()-15*60) { print "<font color=green>[b][img=images/contact_blue.png][/b]</font>"; } else { print "<font color=red>[b][img=images/contact_grey.png][/b]</font>"; } print "</td></tr>"; } print "</table>"; $h->endpage(); ?> p.s i remember a while back Ferdi posted a userlist before that was using this technique but i cant find it anywhere.
-
Re: Magazine Cover I second that. and @ iso Nice work, room for improvement but everything has room for improvement, you could maybe try moving things around and using a different style text styled to suit or stand out over the behind colors if you know what i mean.
-
Re: New Updated Template i like it, it is good but then again there is no originality!
-
Re: Big thanks to Killah i want an award :|
-
Re: New In-Game Template lol "prick" how original *cough* and damn i cant read a topic, i dumb, i forgot it said css php photoshop is hard
-
Re: New In-Game Template need someone to file your big head down? he never asked whether it was hard or not, he was only wanting feedback no what we thought of the template. RS - i like what you have managed to done and im impressed with the layout seeing it is your first what i might suggest and what i myself still need to improve on is creating a template with everything in it which all flows. what i mean by this is nothing feels out of place. from what ive seen of the screen shot i would say it is only the user bars ("images") which seem out of place just because of the boldness of the colors against the dark broken layout. if you see what i mean but apart from that keep up the good work and best of luck in the future.
-
Re: Game themes i guess also that it would be best to pick a theme which is a relatively new concept and not widely used but one that you know alot about. 1.) it makes it easier to become successful with a unique good idea 2.) if it is what you know about you should have no problems thinking of more ideas for your game.