Jump to content

Serious Callers Only

Members
  • Posts

    104
  • Joined

  • Last visited

Everything posted by Serious Callers Only

  1. I once played a psycho **** that went solo against all. With a lot of knives. Really it was great fun, but it forced you to play at night. *head-shot* *guy dies* *escape* *head-shot* ... It got pretty impossible when levels were inside buildings with black shirts. But i still finished. Of course now with the 1.13 mod it IS impossible.
  2. Ho don't forgett to cast "charm" liberaly.
  3. You remeber the ending of Darklands ? I've been playing that again recently. After the awesomes of defying the Witch Sabbat that came across as really lame (and taking all my hard own florins too... the game never ends, but has a final cutscene). Well anyway another dissapointing ending is both syndicate games, specifically syndicate wars, since that had a kickass introduction.
  4. Sucess! Well sorta. I am now able to index the text in the view (the V in MVC) of swing to the paged document exactly. It involved subclassing the viewfactory and the ParagraphView. The viewFactory (obviously) to return my modified ParagraphView and the ParagraphView to remember the StartOffset of the first line and the EndOffset of the last. The difference is the value of the length of displayed text in the Document (being that it different than the length of displayed text in the view).
  5. Its not a question of reading from a file. Its reading on demand from a file, while obeying the AbstractDocument interface from swing, on all charsets, not just ASCII, figure out a element tree (ie: this text is BOLD), and the text just isn't contigous in most situations(HTML, RTF,pdf). This last problem is somewhat solvable in swing, since i can parse directly. What i have to do is a class that figures out the charset, parses the positions of the paragraphs in the text acording to the charset, and stores the complete element tree, and when text is directly asked go to the file and extract it.
  6. So i'm doing a java application to view text files (HTML, Plain, rtf ,doc, pdf whatever) I haven't got to the part when i will need it, but i've already noticed that memory mapped abstractdocument don't exist in swing. So no 20 open files at the same time. (Actually 1 large open file gives problems because of swing retarded views so i allready have to do paging between the model -in memory- and the view ). Before comming seppuku with swing's viewtomodel methods (don't work) that i'm trying to use to discover the first and last visible text in the application, i'm wondering if anybody allready tried to make make a document that reads from file instead of memory. I bet you didn't. But i'll try anyway. Because i'm lazy and incompetent.
  7. I hear you. My AI assignement, wasn't hard, but it sure took a lot of time to make it work (a hybrid sudoku prolog solver, based on human rules, with a java frontend).
  8. You guys should learn the joy of a good cheat system. Although i only have experience with emulators, it is normally very easy to find and trip the flag that controls random encounters.
  9. I find it funny that you qualify thief(2) since that excludes the superior game thief gold that is in almost any way heads and shoulders above its sucessor (if you aren't a wimp). A good thing that thief 2 has over classinc thief is the fan-missions. Which is ironically mostly used to transplant thief I undead levels (just look at the most ranked missions).
  10. I've read almost all of Orson Scott Card books. But I don't really like his writting. It is mostly the contrarian within me that cringes when people hail him as the best writter ever. Similar reaction to people who say the hyperion is the best book ever. Or that fundaction is a timeless classic of science fiction. For gods sake your taste is just horrible, don't recommend books! Ahem... sorry.
  11. I once tried to solo the game with a night ops / stealth. Death incarnate with knives (had 4 at a time). Never fired a shoot. Well at least until to infiltrate the black commandos ****ing bases. Then i caved in and got that silenced russian rifle and picked up ira from training. Still I got mostly owned in corridors. Its mostly impossible to use knives for the alien scenario though (but the armor is very handy).
  12. The modding community for those games is awesome.
  13. Thief Gold Planetscape Torment Fallout 2 Baldurs Gate 1 Fallout 1 Thief II Final Fantasy Tactics Master of Orion 1 & 2 Xenogears Grim Fandango Jagged Alliance 2 Ultima VII part 1 & 2 Deus Ex Betrayal at Krondor Fine games. Fine.
  14. This was amusing, for a while. http://ender.snowburst.org:4747/cgi-bin/cv...chngview?cn=101 Ah, webmasters, those clowns of the IT world.
  15. Right. Do you think that ultima 7 sucked too? Because that is the kind of game that Gothic 2 reminds me of. Maybe you lot are repeating that ridiculous bitching about "the skill is of the character not the player" DnD nonsense.
  16. Since you suggested the Gothic series, that are actually damm fine games, I'm Going to suggest fallout. There!
  17. I'd suggest you patch fallout 2 with the latest patch in the no mutants allowed "fallout modding" subforum sticky tread. Wow. Bad phrase. Edit: Easier to link actually. fallout 2 patch
  18. Shin Meganami Tensei I and II are rather good games too (translated). Pretty frustating sometimes thought.
  19. I never minded RE2 & RE3 controls even if i played them in a keyboard (emulation). Its something that you get used to. The person that said they didn't play grim fandango becouse of the controls, made a grave mistake too. I consider it the best adventure i've played after LOOM.
  20. lame error correction: #!/bin/bash for i in */; do { newName=`echo -n "$i" | tr -s [:space:] "_"` mv "$i" "$newName" } done
  21. #!/bin/bash for i in "`ls -d */`"; do newName="`echo -n $i | tr -s [:space:] "_"`" mv "$i" "$newName" done Am stumped in recursion Research.
  22. Open office is a good answer for those fools who think java can't do good aplications.
  23. Better get platter fixpack. It unlocks afew banter and thing that were bugged. Here: http://www.planescape-torment.org/
  24. This is only about standards. If the developers actually used open standards, there would be a magnitude less porting problems. If they used fo example, a virtual machine setup like java or (god-forbid) C#, there would be even less, except a slower program on startup and some io operations, and many advantages. You could say that microsoft is trying to do this, with this "redesign", separation of hardware and software and all that. However this changes nothing of the fact that: Microsoft standards are mostly closed. When they are not, microsoft usually "extends" the "standard". Html and the "JMVM" are examples of this. Even when they make a "program" like C# that could theoreotically help portability, there is a sword of damocles setup on the form of patents. and license agreements. One of those license agreements This doesn't seem to aply to clean rooms implementations of C# (like mono) however, if some team manages to make a VM that can run programs on another platform, microsoft can and will just "extend", or "deprecate" the standard (like, to be honest, sun did with generics when ibm made its VM). So you see, it is portability ... between microsoft plattforms!
  25. Yes. But you could "move on" to a platform that doesn't screw you every 7 years or so.
×
×
  • Create New...