ShadyCoco
Members-
Posts
98 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Everything posted by ShadyCoco
-
I don't think I understand what you are saying? What I mean is. Would you make a new community project on a more higher level of design? Aiming more towards 2D adventure/multiplayer/PvP and less text based? I have so much free time now I would be available almost 10/14 hours a day.
-
Thanks for the info allen. Will they ever be a new project. Based on 2.5D gaming? And I agree to manyusing Mcc.
-
It's ready for Mcc but! He might edit his own and sell you it for around 30. Best off Pm'ing him
-
Is this project active anymore? If so, is they room for learners or just pros?
-
str replace... add in DB a cName and varchar default 0 and then in header $_sName = mysql_query("SELECT cName from GRPGusers where id = $_SESSION['id']") if(!$_sName = 0) { //str replace here } that might be the long way but, it would work...
-
Hey. I had a problem like this (somewhat). Just make a max amount of EXP. eg: $Max_EXP = $_MOD['LEVEL']*7+180 That would set the max. Then in header have something like: if ($_MOD['MyEXP'] => $Max_EXP) { echo' gratz you have level'd up/ranked up'; mysql_query("UPDATE `mod` SET `EXP_NEED` = `0`"); } its late and im not well so pm me and ill get back to you tomorrow or day after.
-
MRES is fcking useless for numbers. inputting $newpoints into DB with little filtering is another fail. Try adding abs(intval()); That will make sure it's a number and nothing else. Sprintf(); is just slowing it down along with all the MRES :S
-
Ermm. How much you looking for? Can I have FTP? Can I have some form of input? What i your game based on? What game engine? (If any) How many hours a week are you free? My guess is you just want to make a game for free and earn some quick cash. It wont come out good. Good Luck anyway... PS:Add some more info.
-
Okay I have given up. I've had no sleep trying to fix this. I just rang the shop I got it from they are willing to replace it for me. (Thank god my insurance covered accidental damage!) Thanks for all the help guys but my laptop has had it's day :)
-
I have an old laptop in my house with windows 7 (It's too slow to even try boot it up) and my mums. She wont trust me to make a USB bootable disk with her laptop. But, I'll try it now. Thanks mate
-
Hey. Thanks for the replies. Right so far I can only use my USB drives - it seems to be only the CD rom drive. Are they any good methods for putting windows 7 or XP onto a usb flash drive or external HDD. @Spudinski I've removed the battery many times now and my BIOS just goes to default settings (AKA only showing USB and HDD boot load options)
-
Hey. I've had some problems with windows 7 and virus's. Last night, my laptop was somewhat attacked, my boot menu, and all files from my root deleted. Leaving me with just hardware. I had ubuntu on my USB still so installed that. But my CD rom drive wont load any disk, media or installer. My bios cant find my DC rom drive. Is they anyway of installing windows XP or 7 from a USB like I have done with ubuntu? Any help on this would be great indeed.
-
Hey, Here is a version of building blocks with CSS http://www.mediafire.com/?ir3nayqta48qr7c
-
That's alot for little.
-
Ermm to make the minmize use functions and a switch? something like: <?php $_GET['chat'] = isset($_GET['chat']); switch ($_GET['chat']) { case 'chatopen': Chat_Open(); break; case 'chatclose': Chat_Close(); break; default: Chat_Open(); break;4 } function Chat_Open() { //All your chat code here } function Chat_Close() { Link to open chat again eg: echo '<a href="chat.php?chat=chatopen"> Enter chat room </a>'; } ?> If the chat is how i think it is, this sould work :)
-
Fixed as I posted it seen the problem - Sorry :/
-
Hey, I've been working on a mail script and keep coming accross little errors. I've fixed most of them but now I'm getting this one: Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in C:\wamp\www\***\mail.php on line 39 I don't understand because my mysql_fetch_array() is bringing resources :/ If anyone can point me the right way i'd be very happy :) Heres the code: $_MailRun = mysql_query("SELECT * from `mails` ORDER BY `time` DESC"); //this is line 39 while ($_Mails = mysql_fetch_array($_MailRun, MYSQL_ASSOC)) { if ($_Mails['to'] == $_USER['id']) { $_MailsFrom = $_USERMAILFROMcol['username']; $subject = ($_Mails['subj'] == "") ? "No Subject" : $_Mails['subj']; if ($_Mails['seen']=="1") { $_MailSeen="No"; } else { $_MailSeen="Yes"; } echo " <tr> <td colspan='25%'>".date(F." ".d.", ".Y." ".g.":".i.":".sa,$_Mails['time'])."</td> <td width='25%'><a href='mail.php?mail=read'>".$subject."</a></td> <td width='25%'>".$_MailsFrom['username']."</td> <td width='25%'>".$_MailSeen."</td> <td><a href='mails.php?mail=delete'>Delete</a></td> </tr> "; } } ?>
-
Many many many thanks! Maybe I should of looked at math functions a little more :/ Again thanks!
-
Hey.. I've been trying to work out how to make an EXP function for my little project. I'm honestly lost.. the only way I can get anything to work is with an if statment like so: <?php if($_USER['exp'] >= 100) { echo' You are level one.'; } elseif ($_USER['exp'] >= 500) { echo' You are level two'; } ?> They must be a much better way to do this I just don't know how. Any help at all, even other function that might help me would be great! Thanks
-
Random images? PHP generated ones? Or .jpeg, png, gif etc? Need a little more info please
-
Ah okay I fixed it now anyway with the Dayo's help :) Thanks though
-
The table is there for my 3 main parts... menu left and right and a center for the content... And I didn't ask about my table just my CSS... :) thanks man
-
Hey. I jsut started learning CSS and have a little problem. Heres my css: a.menulink{ background-image: url("template/images/menulink.png"); width: 162px; height: 32px; } a.menulink:hover{ background-image: url("template/image/menulinkover.png"); width: 162px; height: 32px; } And here's where it's been used: <td><div class="menucontent"> </br><center><div class="menulink"><a href="page1.php">Test</a></div></center> </div></td> It don't seem to show my hover image or the background image... Any help would be great. thanks