Saint_Michael
Apr 5 2005, 08:09 PM
| | i finish the game a few weeks ago i thought good only thing wrong with it was the customizing the characters thought that was a little tacky especially all the work i did in the first game and the battle was goog but what they sacrfice was the all the monsters you could fight they limited that greatly. story went a little deeper and some need chacters and giving my depth to each character as well.
sound and grapics well top notch but to much story and not enought fighting took me about 35 to finish hte game minus the extra levels that come with but want to know what you gamers thought about who actually played and beaten the game |
Reply
Similar Topics
Keywords : xenosaga, ii, thought, feelings, number, 2
- An Error Thought I'd Let The Admins Know About.
Bad link. (4)
Unhealthy Unavoidable Feelings
(3) I'm 20, I've been married for about 2 weeks now. I'm feeling great about the decision to
get married and will do whatever it takes to make it work. But I am going through some very
difficult times right now with my wife. We've been together for over 4 years now with an unhappy
first two. I was 16-17 and didn't know how to handle a long term relationship. Once we got past
my normal 2 month period, everything got weird. I became controlling and manipulative, and just
couldn't believe this was it. That my dating days were over and this was who I was ....
Get Pan Number Online
(0) Hi People This information is specific to India. So if you are from some other country , please read
this only for information. I am sure everyone will need a PAN at some point of time... Now that its
become online, applying and getting is very Easy. PAN(Permanent Account Number) (Related to Income
TAX) can be applied online also and the process is very simple.It will take 15 days when you follow
ordinary procedure and 5 days if you apply online. /wink.gif" style="vertical-align:middle"
emoid=";)" border="0" alt="wink.gif" /> Below is the PAN Details page: http://in....
New Here. Thought I'd Say Hi.
(11) Sorry if I sound like a noob, posting this "Hey, I'm new here." topic. But I do this on every
forum. So meh. A bit about myself: I'm a drummer. I like to read. LOVE music. I enjoy making
websites. I'm a computer geek. In the way that it's all I ever do. Yeah. So...'sup?....
Are We All Psychic? And Where Does New Thought Come From?
(10) I believe EVERYONE is psychic at a subconscience level. Our brains are electrical in a way, and
everything electric, and other things, have fields of energy. I believe we feed off each other's
brain activity in a way that science can't yet detect. Why is it a guy can just know when to
look to catch a glimpse of a girl's *bottom* 20 yards behind him or that feeling you get when
someone is present but you can't see them. Our brains pick up on each other's fields of
energy and at a subconscience level our thoughts are constantly mingling and producing ....
Ti Basic: Pick A Number
(1) Description Learn how to create a neat-o Game in TI Basic. Its basic premise is that someone
picks a number, then they pass the calculator to their friend, and they try to guess the number.
Once the successfully guess the number a message appears and says that they have won. I have also
included a line that keeps users from choosing numbers greater than one-hundred. Please Enjoy.
Try I Out Alright.... just input what you see below and I'll explain it a little below.
CODE :ClrHome :Lbl 2 :Prompt A :A->X :If X>100 :Goto 2 ....
Global Warming
Just a thought (43) I find it hard to believe that we are the cause of global warming. The world is always changing I
mean we had an ice age, and at one time all the land was one big mass. Where I live we have a lake
that was formed by a glazer it is one of the deepest made glazers around, well with that in mind I
dont see any glazers around here. I am not aying that we don't contribute to global warming but,
the world is always changing. Look at the glazer melt downs I mean what about the lost city of
antlantic did it sink or just get flooded? I think the enedibal is the earth is going....
What You Never Knew About Apes/ Primates
Primates Smarter Than Recently Thought (1) I wrote this in a college essay and I felt I should share it as I found this topic very interesting.
The recent study of chimpanzees, bonobos and other primates has in fact made an astonishing
impact of what was recently thought about non-human primates. The truth to the matter is that these
animals are actually more intelligent and mentally capable than recently thought to be. Some
researchers are even saying that these primates’ poses levels and types of intelligence thought only
to be used by humans. These tests and studies conducted show unequivocal demonstr....
Make A Big Number!
What is the largest number you can make with... (8) What is the largest number you can make with 3 one-digit numbers? You've no doubt heard this
one before. The answer you all know and love is 9 ^ 9 ^ 9, or some 369-million digit number that
appears in Pi somewhere but no one cares to memorize. Here are a few rules to that game: 1. The
number must be less than infinity. 2. You cannot use unary operators. (Unary operators are operators
that only require one argument to work, such as factorials. 1 + 2 = 3 is a binary operator, since it
has two arguments, 1 and 2.) 3. If you use an iterated binary operator (one that i....
Zk
the number 1 Ajax Framework (2) ZK is an open-source Ajax Web framework that enables rich user interface for Web applications with
little programming. Its an event-driven, component-based framework to enable rich user interfaces
for Web applications. ZK includes an AJAX-based event-driven engine, a rich set of XUL and XHTML
components and a markup language called ZUML (ZK User Interface Markup Language). With ZK, you
represent your application in feature-rich XUL and XHTML components and manipulate them upon events
triggered by user's activity, similar to what is done in desktop applications. Un....
Count Number Of Div's By A Class Name
(3) I have a situation where I need to be able to count the number of div elements in a page and then
use that number for a loop. I've already tried this but it returns all child div elements.
ocument.getElementById("char_list").getElementsByTagName("div").length; I need only the child nodes
directly below the parent div 'char_list'. THe structure is like this The
problem here is I also have nested div's inside the 'char_node' divs so the first code
returns them all. I'm trying to just gather the char_node class divs and use i....
The Future...
haven't you ever thought about it? (5) hasn't anyone ever thought of what it may be like in the future? i always have! here is the
imaginative side of what i hope the future is like: future computers: -based on concept on
microsoft surface, but have LINUX installed on all computers /wink.gif"
style="vertical-align:middle" emoid=";)" border="0" alt="wink.gif" /> -only browser: firefox -have
99 inch screens, hd, laser future mobiles: -are purely controlled by what your mind desires -no
pin codes - need to THINK of your password to enter -are like those things you see in the movies -
where the devic....
Data Structure -- Arrays -- Odd Number Of Elements
(0) Given an array of elements with many numbers occurring even number of times and two numbers
occurring odd number of times. Find out the two numbers that occur odd number of times. example:
Elements in array -- 14433446 The expected result is 1 and 6 One solution 1. Find max of the
array 2. Hash Function : element/max value 3. Repeat to all elements... 4. Find frequency... yo will
get the 2 elements with odd frequency. but this is not the optimal.... Do find more solutions to
this and post it. Look for time and space complexity. Another Solution one more s....
Perpetual Motion
A possible pointless thought. (6) OK Heres my thought, if we take a perfect pentagram like that and on each on of the star place
a weight with equal mass. And administer a slight push because of the odd number of points no
matter what point it will be in it will always have more weight on one side that the other. As seen
here As we can see here. There is three on the right and two on the left. This will make it
fall clockwise bringing it to this kind of position. Im not even gonna bother, you get the idea
it'll keep going forever. Swell. Perpetual motion. Now that we have this we dont ....
Which Data Type To Use In Mysql Table
Using a 5 character number (4) If I wanted to use an ID field which automatically increments when data are addad, but displays the
ID as a 5 figure number, which data type would I have to use? I would want a type that assigns a
number to a record in the format "00001", "00002", etc. However, when I use "int" as datatype, it
only displays th field contents as "1", "2" etc. So, which data type could do the job for me? i do
not need a decimal point or anything, just an id that displays in 5 figures, including the leading
zeros. Thanks in advance.....
Does Practice Really Make Perfect?
Here's my thought... (11) We have all heard of the saying 'Practice makes Perfect'. I actually disagree with that
statement. You see, the core principle of practicing is to make your self better. An example would
be a child learning the piano. The child must practice in order to get better at the piano. But my
thought is that practice does not make perfect... it just makes permanent. If a child is learning to
play the Concert C Major Scale... but plays and practices it wrong over and over again... it will
not be perfect. His Concert C Major Scale will be permanently wrong... until he fix....
Do You Believe In Life After Death? What Are Your Personal Feelings About It?
(23) There are aguments on the philosophical, scientific and religious sides of life after death and not
one person can come to a definitive conclusion. Of course not! Nobody has ever REALLY come back
from the dead to tell us what happened to him/her after they died. Every argument is speculation.
Every religion has it's own teachings of death and the hereafter and I don't feel this is
something that anyone should argue with. We are taught a specific belief and nobody should ever tell
us we are wrong because it is our way and we are entitled to that way. Persona....
Thought And Religion
My basis on why I personally do not agree with most religions. (13) There are many ideas that come up in this world that science has either failed to or just simply
cannot explain through tests and being able to use some sort of knowledge to link things together.
Human beings for some reason, must know exactly how this world works and the reasons as to why such
a creation is able to function in some sort of way. Through this reasoning, people constantly try to
find ways to believe in what they want to believe, and therefore turn to some sort of religion to
explain the world to them. With this in mind, there have been many religions creat....
Mixed Feelings... Yes, No, Maybe So?
Help! =( (4) OK I don't wanna waste everyone's time so I'm going to make this as short as
possible! There's this amazing girl I go to university with, she's in the year below
me so I don't get to see her that much (campus is pretty big). About a year ago she had
relationship problems with her annoying boyfriend and I helped her out, gave her advice and all
that.(They broke up in the end) We talked quite a bit and we still talk a lot right now. Last month,
we went on a joint geography trip for about a week. We hung around each other pretty most of the day....
New Found Php Coding Errors
I always thought these worked, but suddenly they no longer do?! (5) Hi i'm dan from new zealand, right next to my home land australia. I have been writing php
scripts for two years now and just recently none of them have been working. Please help me out as
best as you can, i'm sure it is only something simple. CODE ----------------Form
1-------------------------- <?php // ---- Customized form script for the HBRC---------------
// Receiving variables ----------------------------------- @$fn =
addslashes($_POST['fn']); @$ln =
addslashes($_POST['ln']); @....
Mathematical Proof
...that there is no largest prime number (11) In math, a proof is basically just that, proof that something is true. Proofs must be rigid, they
cannot be based on assumptions. For example, just because we keep finding bigger and bigger prime
numbers, it does not mean there are infinitely many. However, there is a proof for that. First,
assume that there is, in fact, a largest prime number. Call it "P." That is, there is no prime
that is greater than P. (It's OK to assume things like this in a proof sometimes; for example,
it's OK here because we intend to prove that our assumption is wrong, that it le....
I Really Thought I Wouldn't Ask Advice About A Girl
..especially on forums...but whatever :P (11) Well yeah, I feel a little weird asking help here... But I've read other topics and maybe you
can help me with an advice or two. Well my problem is ... a girl. I mean, she's not the
problem - I am. I like her for like 2 years now. And I know stuff about her ex b-friends etc. We are
good friends and yea, she knows I like her but I'm kinda afraid and don't really know how to
show her that...you know. I mean, I've been with two girls since I like her but...I just broke
up with them because I didn't really have any feelings against them. I even cat....
The Definition Of Google Number [aka Googol]
No... it's not that search engine! It has a definition. (18) Maybe some of you know this already A google is a fantastic number; it is a number followed by 100
zeros. So when I say you got a google girlfriends, it means you have 10^100 girlfriends. (Aint
logic) Now we know why the name Google for the famous search engine.....
Google A Number?
(48) when i was in 5th grade, which was 5 years ago, this was right when google first came out i think...
anyways, i remember my 5th grade teacher telling me that the word google was the biggest number
possible and that it was bigger than infinity. Back then i believed it but then you really think
about it, how is a number even possibly bigger than infinity if infinity goes on FOREVER? and is
googe EVEN a number????? anybody know?....
Need Help With C Program To Test If A Number Is Prime
Ending unexpectedly somewhere near for-loop (12) CODE #include <stdio.h> main() { printf("Enter a number:
"); int n; scanf("%d", &n); if(n ==
2) printf("%d is prime", n); else if(n % 2 == 0 || n <
2) printf("%d is not prime", n); else { int x;
for(x = 0; x < (int)sqrt((double)n); x++)
if(n % x == 0) { printf("%....
June 6th 2006 - The Devils Number
Possibly the end of the world? (113) Ok, I don't want to start any religious fights here, that's not what this topic is meant
for. So PLEASE hold the religious comments. I was at school one day, I turned to a friend and said
"I bet the world will end on June 6th of this year". Now I think they'd know what I meant(goth
kids, ya, no I'm not one). But they didn't! So I sat there and explained it, all of a
sudden "Bing" the light in there brain goes off, they said that's really a possibilty. For
those of you who don't get it; June 6th, 2006 6-6-06 Or without the 0, 6-6-6, 666 W....
I Got Hosted!
I wanted to share my feelings with all (16) /smile.gif' border='0' style='vertical-align:middle' alt='smile.gif' /> /smile.gif' border='0'
style='vertical-align:middle' alt='smile.gif' /> /smile.gif' border='0'
style='vertical-align:middle' alt='smile.gif' /> /smile.gif' border='0'
style='vertical-align:middle' alt='smile.gif' /> I had created several web sites with free
hosting before. But, I don't know why this time I feel somethhing I had never felt. Let me
explain. As I am sure many other people have, I came here looking for a good hosting service after
experiencing all sorts of problems,....
Thought Provoking Music
(7) Have you ever heard a song that just made you think? What was it?....
The Xenosaga Story In A Very Big Nushell
SPOILERS (22) THE STORY OF XENOSAGA SO FAR In year 200X An archaeological scientist discovered the Zohar. Around
2600 years later, Technology has advanced almost to the point of magic. Joachim Mizrahi made a Zohar
Emulator and the gnosis were released. Many Emulators were made. Years later, U.R.T.V’s were made to
combat U-DO, a space-time anomaly of unpresidented power. In the same period a war broke out
between the Realians and Humans, The cause is thought to be The Song of Nephilim which controlled
the minds of the relians. A realian, named Cannan and a human called Chaos(I’ll get....
Number Guessing Game
number guessing game (9) do you still have the code for that number guessing game?....
Looking for xenosaga, ii, thought, feelings, number, 2
|
*RANDOM STUFF*
*SIMILAR VIDEOS*
Searching Video's for xenosaga, ii, thought, feelings, number, 2
*MORE FROM TRAP17.COM*
|
advertisement
|
|