Jump to content
RealModScene

Daniel

Members
  • Content Count

    15
  • Joined

  • Last visited

Posts posted by Daniel


  1. Well, I bought the console brand new back in 2008... But I have seen some games with some huge drops to 20FPS and I went into my friend's home and it also had the same lag. There are really one or two unplayable games full of lag. But some are running at around 28fps and drop to 25fps easily. If someone could OC it just a little bit it would probably win ~5fps on some games which is just the amount needed for a better experience. ps: Too bad no one know any info about it. (I'm wondering if soldering new crystal would OC it ??)

    why not switch to pc :p

    I have a PC... However after almost 2000€ (with the extras, not just the PC) wasted on it (back in mid 2011), it has some strange problem. I sent it to the store and they had my PC for 5 months and didn't found the problem. The thing is I bought the PC and it doesn't run almost any game. BF3 drops from 45 FPS (all ultra, on, 1080P) to 0 FPS with huge stuttering. Even on low is unplayable. And I have tried everything (all bios settings), HT off, spread spectrum off, all latest bios\drivers... The worse is that in all tests everything is OK. 3D marks have normal score for this PC, ram tested all night with no errors and have the right bandwidth. ps: This PC killed me. It's all I ever wanted, I build it with all care, wasted so much money, and it's just OFF since 2011. (I also took it to a friendly pc store here this year, and they conclude nothing). If I had more hardware and money, I would test every component...Keep Cool
    damn. Silly question but some games will have failsafes so if it doesn't think your PC can handle it, it will go into really low settings.. Just happens randomly sometimes not 100% sure why, this happend to me when playing gta iv on PC. Google it.. Not sure about the terminology of it though as it hasn't happend to me lately :)Sent from my iPhone using Tapatalk

  2. Thanks Swizzy. @Daniel, I was playing this and was thinking this could be fun if it kept track of wins, ties and losses, and had a set goal of wins before the game ends (similar to Super Mario War), also some graphics would be cool. EDIT: A Tic Tac Toe game would be great too, simple homebrew games that people could play with their friends, even add highscores and what-not

    I could potentially make it open animations of scissors paper rock with not to much trouble, and I think I have a few people who could help with animating or atleast making a template or something. Blender isn't to hard when younger used to it also tic tac toe sound cool, a bit harder though.. Also to have highscores online would be really annoying but maybe just stored on the computer could be coolSent from my iPhone using Tapatalk

  3. Sooo just learning c# and made this for fun :p heres the source code and download for the console app :)

     

     

    using System;using System.Collections.Generic;using System.Text; namespace RockPaperScissors{    class Program    {        static void Main(string[] args)        {            Console.Title = "Rock Paper Scissors";            string userChoice = "**&&**";            int computerChoice, loseCount = 0, tieCount = 0;            bool QUIT = false;            double winPercent = 100.0, gameCount = 0.0, winCount = 0.0;            Random computer = new Random();            Console.Clear();            Console.WriteLine("ROCK PAPER SCISSORS");             do            {                Console.Write("Enter choice, or enter QUIT to quit: ");                userChoice = Convert.ToString(Console.ReadLine());                ++gameCount;                if (userChoice.ToUpper() == "QUIT")                {                    break;                }                computerChoice = computer.Next(1, 4); // 1 is Rock, 2 is Paper, 3 is Scissors                 switch (userChoice.ToUpper())                {                    case "ROCK":                        if (computerChoice == 1)                        {                            Console.WriteLine("You chose {0} and the computer chose Rock. It was a tie!", userChoice);                            ++tieCount;                        }                        else if (computerChoice == 2)                        {                            Console.WriteLine("You chose {0} and the computer chose Paper. You win!", userChoice);                            ++winCount;                        }                        else if (computerChoice == 3)                        {                            Console.WriteLine("You chose {0} and the computer chose Scissors. You lose!", userChoice);                            ++loseCount;                        }                        break;                    case "PAPER":                        if (computerChoice == 1)                        {                            Console.WriteLine("You chose {0} and the computer chose Rock. You win!", userChoice);                            ++winCount;                        }                        else if (computerChoice == 2)                        {                            Console.WriteLine("You chose {0} and the computer chose Paper. It was a tie!", userChoice);                            ++tieCount;                        }                        else                        {                            Console.WriteLine("You chose {0} and the computer chose Scissors. You lose!", userChoice);                            ++loseCount;                        }                        break;                    case "SCISSORS":                        if (computerChoice == 1)                        {                            Console.WriteLine("You chose {0} and the computer chose Rock. You lose!", userChoice);                            ++loseCount;                        }                        else if (computerChoice == 2)                        {                            Console.WriteLine("You chose {0} and the computer chose Paper. You win!", userChoice);                            ++winCount;                        }                        else                        {                            Console.WriteLine("You chose {0} and the computer chose Scissors. It was a tie!", userChoice);                            ++tieCount;                        }                        break;                    default:                        {                            break;                        }                 }            } while (QUIT == false);             if (gameCount > 1)            {                Console.Clear();                Console.WriteLine("Giving up?");                Console.WriteLine("{0} game(s) played. You won {1} game(s). You lost {2} game(s). {3} game(s) were a tie.", gameCount, winCount, loseCount, tieCount);                winPercent = (winCount / gameCount) * 100;                Console.WriteLine("You won {0:f2}% of the games you played.", winPercent);                Console.WriteLine("Thanks for playing!");                Console.ReadKey();            }        }    }}

    Just copy and past it into whatever builder you use and it should format it correctly so dw about the lines being split in two...

    heres the download for the already bult console app :) https://mega.co.nz/#!epRVRYSL!ePibxiFjrjiIQxS97F3ZbhG0xicxKXvmzwQLvODXvDo

     

    What do you guys think? :)


  4. Hey guys, i thought id make a mosaic style banner of all the banners and a few extra little photos i found :) Its still not finished, i need to workout the size of the tiles and also the colour levels a bit better, and any fsd/link related photos would be great! i just wanted to get this posted as its 2:30 in the morning here in sydney so here it is Posted Image

    • Like 1

  5. Has the console ever been modded before?

     

    Does it boot up with the stock NAND written?

     

    The SMC might be corrupted.

    yeah the ecc/smc corruptud i believe so that fucked everything up, i fixed by flashing the retail nand to it :) although i have heard about this happening on consoles witch wherermodded and running fine but one day got the same error, nobody has a great idea how it happens witch is kinda annoying


  6. So i was looking at my old jasper 16mb and decided why not attempt to glitch it, so i took my coolrunner rev c and tried to glitch it, i dump the nands and they are perfect. i write the ecc to the xbox and bam, it tries to glitch but wont boot. then it gave me 2 red rings

     Posted Image

    Turns out i had to high of a cb (6754) so it gave me the error code 00233, i believe this error occurs when there is corruption in the nand  , im not sure specifically what part i just know it makes your console useless, so the way to fix this is to re flash your retail nand to the console and it should boot again :)

×
×
  • Create New...