Jump to content
MakeWebGames

become

Members
  • Posts

    10
  • Joined

  • Last visited

Personal Information

  • Location
    United Kingdom, England
  • Interests
    Paintball, Web Development, Graphics
  • Occupation
    Student

become's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. It wasn't anonymous
  2. body { background: #D5DCE2 url('images/spacecont.png'); background-size: 100%; margin:0%; }   Try that (:
  3. Heey there... I would like to start off by saying the background and mascot are not mine, they were found in the fansite kit 1 (http://www.deadisland.com), and the main reason why i chose to create this is because i have huge hype for the game and cannot wait to buy it, the other reason is that i couldn't find anything else productive to work on that i fancied... The text/font was found on http://www.dafont.com, so all in all...its a pretty basic template, but i quite like it so i thought i'd share it with the community. Please post your thoughts about it, good or bad, i don't mind :) So here to is... Note: When i previewed the post the image wouldn't show but the BBCODE is correct, so i apologize if it doesn't Oh, it also lacks in size, so i wouldn't really call it a full template...
  4. Sorry galdikas but i have a tendency to try things out and i happened to come across another slight glitch, i hope this helps, although it may seem like im critising you, im not i hope to provide you things that you can work on so you can further achieve and learn :). I have attached a screenshot to hopefully make things clearer. But basically its a a glitch in your shoplift feature and even though a negative outcome appears you can keep going until you run out of the required stat. Hope this helps, and keep up the good work.
  5. Hey, ive just found a slight glitch within your programming... IF you go to explore, click your referral link (and if your details are saved, i haven't tried it without) but fill in all your information using the same username, it will say usernames already in use, however when you go back to the game you have a mail saying welcome to the game... Thought id let you know :)
  6. The project is looking very good :) Well done galdikas, you've definitely improved it since my last visit, keep up the good work :)
  7. become

    Phones

    I have the Nokia e5. First impressions, i was glad with it...but now...its slows down a lot, I've heard though its not directly Nokia and came from one of its franchise/investors or something along those lines, so i wouldn't blame it on Nokia as my previous experiences with Nokia have been amazing. although i like the phone i personally wouldn't advise it on anyone to buy purely due to the fact that it sometimes laggs a bit but i can make do with it :).
  8. Hey I'm a little unknown here but i could help you out :) If your interested that is, ask sniko about my professionalism (not trying to brag or sound a little....) but id be glad to help you out. Thanks :)
  9. True, thanks for pointing that out a_bertrand, however im still novice. If you would take a quick look at the Comparison.jpg ive attached you will see the changes i have made to the original code. However, thank you greatly for pointing that out and i shall look into readkey ect and take into account what you have given me and i shall work on it to hopefully improve it :). Thanks though, i do appreciate the feedback and support, but please remember, im still novice :). Thanks, Become
  10. Hey, I would consider myself to be new to the forum, posting wise, however i have been hovering around helping a few people out via PM and reading through certain posts which interest me :) I study visual basic 2008 in education and i happened to fall upon Floyd's Triangle (http://en.wikipedia.org/wiki/Floyd%27s_triangle) and thought it would be an achievement if i were to alter the code shown in the following link for it to have a more appealing UI, in terms of spacing between certain characters and displaying errors messages where appropriate - http://en.wikipedia.org/wiki/Visual_Basic_.NET (bottom of the page, roughly 7/8 down) The reason im posting this up to so you can learn a few tips, if you are studying vb.net and i would like to share with the community a sample of code which i managed to change from wikipedia to work with vb.net 2008 rather than other variations. You are able to freely download vb.net 2008 completely free from the microsoft web page (http://www.microsoft.com/express/Downloads/#2010-Visual-Basic) Visual Studio 2008 Express. Please comment below on what you think its good/effective or what needs improving on, otherwise i hope you enjoyed my contribution. Screenshots are below and code is presented below to. NOTE: I wouldn't consider this as 100% mine as the majority of the code i found on wikipedia.org so therefore I'd just like to point out that i only did slight alterations and added in a few (not many) notes for a programmer/pseudo code user to read and hopefully understand. To be completely honest with you, im not too sure on what everything does, but i hope this inspires some to learn and look into to hopefully make clearer to others :)   Module Program Sub Main() Dim rows As Integer 'Input validation. Do Until Integer.TryParse(ReadLine("Enter a value for how many rows to be displayed: "), rows) AndAlso rows >= 1 If rows < 1 Then Console.WriteLine("Warning: You cannot have less than 1 row") End If Console.WriteLine("Allowed range is 1 and {0}", Integer.MaxValue) Console.ReadLine() Loop 'Output of Floyd's Triangle Dim current = 1 For row = 1 To rows For column = 1 To row Console.Write("{0, -2}", current & " ") 'set spacing for each displayed number current += 1 'set increase for each integar Next Console.ReadLine() Next End Sub Function ReadLine(Optional ByVal prompt As String = Nothing) As String If prompt IsNot Nothing Then Console.Write(prompt) End If Return Console.ReadLine() End Function End Module   I have attached a comparison screenshot of both original and editied codes so you can see the editied/added pieces of code/information. Again, its not alot in comparison to whats there, but it seemed to fix a few errors i had with the original code. No, i don't think this would come in useful to most people, but it's been said you should be able to code Floyd's Triangle with a language to understand the basic comprehension and understanding of it. Thanks for taking an interest in this post, Many thanks, Become.
×
×
  • Create New...