Jump to content
MakeWebGames

ShadyCoco

Members
  • Posts

    98
  • Joined

  • Last visited

Everything posted by ShadyCoco

  1. 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.
  2. ShadyCoco

    Jobs?

    Mind employing me for like 2 days?   I just moved from Derby to Ashton under lyne so it's going to be hard to get in contact with my schools/colleges Also how come you don't come on msn anymore? :(
  3. ShadyCoco

    Jobs?

    How many of you are finding it hard to find a job? Or keeping hold of a job? I know in manchster/ashton it's really hard to find any type of job without a reference zzzz
  4. Thanks for the info allen. Will they ever be a new project. Based on 2.5D gaming? And I agree to manyusing Mcc.
  5. It's ready for Mcc but! He might edit his own and sell you it for around 30. Best off Pm'ing him
  6. Is this project active anymore? If so, is they room for learners or just pros?
  7. 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...
  8. 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.
  9. 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
  10. 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.
  11. 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 :)
  12. 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
  13. 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)
  14. 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.
  15. Hey, Here is a version of building blocks with CSS http://www.mediafire.com/?ir3nayqta48qr7c
  16. That's alot for little.
  17. 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 :)
  18. Fixed as I posted it seen the problem - Sorry :/
  19. 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> "; } } ?>
  20. ShadyCoco

    EXP function

    Many many many thanks! Maybe I should of looked at math functions a little more :/ Again thanks!
  21. ShadyCoco

    EXP function

    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
  22. Random images? PHP generated ones? Or .jpeg, png, gif etc? Need a little more info please
  23. Ah okay I fixed it now anyway with the Dayo's help :) Thanks though
  24. 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
  25. 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
×
×
  • Create New...