Results 1 to 15 of 194

Thread: FAQ: Baaj Temple and Bevelle Treasure (Spoilers)

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Seriously. Blitz Ace's Avatar
    Join Date
    Jul 2005
    Location
    Sydney, Australia
    Posts
    295

    Default

    Quote Originally Posted by §håd0w
    You lie... wanna know why?
    Because of Zanarkand says I.
    You cannot get the treasure sphere until the second try.
    Upon after beating Sin, way up high
    Then you take the blond hair guy
    Back to Zanarkand, after staring Seymour in the eye,
    Upon roughing up Sin in the sky.

    Code:
    public class eoff
    {
        public string myTheory, correctTheory;
        public boolean answer()
        {
            if (myTheory.equals(correctTheory)
             {
                  return true;
             }
        }
    
        public void check()
        {
            answer();
            if (a == true)
            {
                 DarkSummoner = "Dispwnt"
            }
            System.out.println(DarkSummoner);
        }
    
        public static void main (String [] args)
        {
            eoff.check();
        }
    }
    Output: Dispwnt
    haha, that made me laugh, way to make a point using java...

    My apologies for being a perfectionist, but this code will clearly not compile......... for various reasons....... and seeing as i am sad i took the liberty of fixing it...... hey, i like java

    Code:
    public class eoff
    {
        public String myTheory = "some theory";
        public String correctTheory = "some theory";
        
        public boolean answer()
        {
            return myTheory.equals(correctTheory);
        }
        
        public void check()
        {
            String DarkSummoner = "";
            
            if(answer() == true)
            {
                DarkSummoner = "Dispwnt";
            }
            System.out.println(DarkSummoner);
        }
        
        public static void main(String[] args)
        {
            eoff eoff = new eoff();
            eoff.check();
        }
    }
    YAY FOR JAVA!!!

    on another note (actually related to this thread) yes you will always have to do 2 trials at the zanarkand dome to get the destruction sphere, and it is clearly the one that most people dont realise they have missed (and for some reason, they always think they have missed bevelle).... once again *deep breath* YOU CANNOT MISS THE BEVELLE DESTRUCTION SPHERE
    Last edited by Blitz Ace; 09-11-2005 at 02:55 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •