Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Lenton

Members
  • Posts

    1845
  • Joined

  • Last visited

    Never

Everything posted by Lenton

  1. Lenton

    Portforwarding help

    Can you give us a screenshot of your router's portforwarding settings?
  2. ↑ Rides while programming anime games. ← One ugly bastard. ↓ Has three testicles.
  3. Pretty fun. ![](http://i.imgur.com/00ptJ.png)
  4. @Ï‚à ¹€Ï‚à ¹€: > No > > Azy
  5. @Lumiere: > duck=f.u.c.k but it's censored. Don't lie. Everyone just loves to discuss ducks, they are just too ducking cute.
  6. @Murdoc: > ![](http://t3.gstatic.com/images?q=tbn:ANd9GcRC-bbfbzP3L5InIqq0eXI7S9pswNocApxf2GhU1-7B53jM-YfoNT1wr3ll) ![](http://weknowmemes.com/wp-content/uploads/2012/01/the-shit-i-put-up-with-240x180.jpg)
  7. Lenton

    Logo Request

    @quintensky: > Loading Trollface.avi It's not trolling if it's the truth.
  8. ![](http://i0.kym-cdn.com/entries/icons/original/000/001/248/cannot_be_unseen.jpg)
  9. Lenton

    Map edit

    Make yourself an admin by opening the server, switch to the 'Players' tab, right click your username and select 'Make Admin'. Now while playing the game, press 'Insert' or type '/admin' in the chat to bring up the admin panel. You can then edit the current map by clicking the 'Map' button.
  10. **Here's a few pointers:** - You forgot your tag at the top. :3 - For valid XHTML you need to use quotes with your attributes. For example: class=blog should be class="blog" - You should use an ID selector (#) when your only going to use it once on a page and a class selector (.) when you may use it more than once on a page. For example:should bebecause it will only be used once. - The syntax of your CSS is wrong, check out this [tutorial](http://www.w3schools.com/css/css_syntax.asp). For example: text-align center should be text-align: center; - When using the property "font-size" it's best not to use the value "large". Specify a pixel value like this: font-size: 16px; - In CSS there's something called inheritance which means the child object will inherit all of the parent objects properties. If we put the "font-family" deceleration in the body selector the "blog" div will inherit that font. This means that we only have to specify it once in our code. **I also tidied up your code and gave you a few example CSS declorations for you to play around with:** >! Post Title Posted 01/01/2012 by Bob Lorem ipsum dolor sit amet. [Link To this Post](#) Tags >! body { font-family: 'Oxygen', sans-serif; font-size: 12px; } #blog { background-color: grey; } .post { background-color: white; border: 5px solid yellow; } .post .title { font-size: 16px; font-weight: bold; } .post .info { color: grey; { .post .tags { color: green; }
  11. Same thing at my college, the teachers are all old and don't know anything about web development. They teach ASP and Microsoft Access. -.-
  12. Lenton

    Read Map Files

    I am reading it as a binary file. I opened it up with a hex editor and it only had that data in it. Dodgy map file? If you want to have a look at it yourself it's located here: http://lentonproductions.com/eclipsecloud/map/map1.dat
  13. Lenton

    Math problem

    You divide the numbers by the size of the tiles which is 32 pixels. Width: 647 / 32 = **20** remainder 0.21875 Height: 479 / 32 = **14** remainder 0.96875
  14. Lenton

    Read Map Files

    Thanks for the documentation. I'm using Robin's default map to test my script but it only seems to have this in it: "Random Forest blackadder.mid !  ". Does anyone have another map file I can test my script with? I can't run the engine.
  15. Lenton

    Read Map Files

    I plan on creating a PHP script which will convert an uploaded map file to plain text so I can then interpret/manipulate it.
  16. Lenton

    Read Map Files

    Everything in plain text.
  17. Lenton

    Read Map Files

    Hello, How can I convert map.dat files (stored in the server's map directory) to plain text? Thanks.
  18. He googled his name, Came across an old game, Is it finished? Not quite, Found an awful Freewebs site, The music is as annoying as crap, It's almost as bad as this rap, At least it has one fan, That is, Azkanan. Peace out.
  19. Lenton

    Site

    Stop using dreamweaver and download the [PHP netbeans](http://netbeans.org/downloads/index.html). To install a forum you download the forum files and upload them to your web host.
  20. No way, I was planning on doing something involving the web and eclipse maps too. This project may have some competition.
×
×
  • Create New...