Official Codex Discord Server

  1. Welcome to rpgcodex.net, a site dedicated to discussing computer based role-playing games in a free and open fashion. We're less strict than other forums, but please refer to the rules.

    "This message is awaiting moderator approval": All new users must pass through our moderation queue before they will be able to post normally. Until your account has "passed" your posts will only be visible to yourself (and moderators) until they are approved. Give us a week to get around to approving / deleting / ignoring your mundane opinion on crap before hassling us about it. Once you have passed the moderation period (think of it as a test), you will be able to post normally, just like all the other retards.
    Dismiss Notice

Wizardry The Wizardry Series Thread

Discussion in 'General RPG Discussion' started by Major_Blackhart, Feb 24, 2008.

  1. Magellan Savant

    Magellan
    Joined:
    Sep 3, 2013
    Messages:
    415
    Location:
    Michigan
    PC RPG Website of the Year, 2015
    Octavius, I'm normally with you on the pukey anime artwork. However, the artwork in this game actually looks damn good.

    [​IMG]

    [​IMG]


    When I think of pukey anime artwork, this is more of what I personally think of.......

    [​IMG]

    [​IMG]
     
    • Brofist Brofist x 1
    ^ Top  
  2. octavius Prestigious Gentleman Arcane

    octavius
    Joined:
    Aug 4, 2007
    Messages:
    14,938
    Location:
    Bjørgvin
    Yeah, that doesn't look too bad. Better than the images that turned up after a quick Google search.
     
    ^ Top  
  3. Jaesun Fabulous Moderator

    Jaesun
    Joined:
    May 14, 2004
    Messages:
    36,924
    Location:
    Seattle, WA USA
    Torment: Tides of Numenera Divinity: Original Sin 2 BattleTech
    Yeah. most jRPG artwork (for me) is RAGE INDUCING, but that actually doesn't look that bad.

    Is the game any good? :M
     
    ^ Top  
  4. KoriTama Novice

    KoriTama
    Joined:
    Aug 28, 2014
    Messages:
    26
    Location:
    Russia

    Wizardry 7 Automap Mod Version 0.1a.


    This is not tested well yet, so it may contain many bugs. Final version come out when I finish my Wizardry 7 walkthrough which I even doesn't start.
     
    • Brofist Brofist x 3
    ^ Top  
  5. Magellan Savant

    Magellan
    Joined:
    Sep 3, 2013
    Messages:
    415
    Location:
    Michigan
    PC RPG Website of the Year, 2015
    No idea. The Steam release is a few days away, and I've never played any of the series on PSP or Vita or whatever they were on before.
     
    ^ Top  
  6. TigerKnee Prophet

    TigerKnee
    Joined:
    Feb 24, 2012
    Messages:
    1,826
    Hardcore Gaming 101 is starting their super Wizardry overview.

    http://www.hardcoregaming101.net/wizardry/wizardry.htm

    So what do you hardcore Wiz fans think of what they've written so far?

    Show Spoiler
    Angry at the part about Wizardry influencing JRPG series before they declined?
     
    ^ Top  
  7. Darth Slaughter Arcane Patron

    Darth Slaughter
    Joined:
    Apr 19, 2008
    Messages:
    2,942
    Location:
    Brazil
    Divinity: Original Sin
    they link an interview with robert woodhead in our prestigious magazine...
     
    ^ Top  
  8. Grauken Agent of the NWO Patron

    Grauken
    Joined:
    Mar 22, 2013
    Messages:
    5,689
    ^ Top  
  9. Malignant Manor Learned

    Malignant Manor
    Joined:
    Sep 14, 2013
    Messages:
    213
    The Wizardry 7 auto-map allows you to resize the automap with the mouse and should also work with Wizardry 6. The automap does not load data from old saved games so only areas explored while running the mod show. It supports multiple saves i.e. save.dbs and save2.dbs have their own automap save files. It shows the squares surrounding as darkened out (which is nice). The in-game map shows them as completely black.

    for KoriTama (open)


    KoriTama

    I got this error when trying to run it in XP.
    The procedure entry point strcpy_s could not be located in the dynamic link library msvcrt.dll
    I ended up compiling it, but my old gcc environment didn't compile right for the tooltips so I commented it out. strcpy_s (which seems to be Microsoft specific but maybe maybe it would work if GCC was updated) was also missing so I didn't get the window title. Updating GCC would require me to backup yet another compile environment for old projects and recompile libraries so I'm not going to be doing that anytime soon.

    In cdrom_aspi_win32.cpp, you needlessly changed some includes
    Code:
    #if defined (_MSC_VER)
    #include <ntddcdrm.h>       // Ioctl stuff
    #include <ntddscsi.h>
    #include <winioctl.h>       // Ioctl stuff
    #else
    
    #include <ntddscsi.h>
    #include <winioctl.h>       // Ioctl stuff
    #include <ntddcdrm.h>       // Ioctl stuff
    #endif
    
    should be

    Code:
    #if defined (_MSC_VER)
    #include <ntddcdrm.h>       // Ioctl stuff
    #include <ntddscsi.h>
    #include <winioctl.h>       // Ioctl stuff
    #else
    #include "ddk/ntddcdrm.h"     // Ioctl stuff
    #include "ddk/ntddscsi.h"
    #endif
    
    (this code shouldn't even be compiled for people building the automap anyway since it requires >= SDL 2.0.2.)
     
    • Brofist Brofist x 1
    ^ Top  
  10. KoriTama Novice

    KoriTama
    Joined:
    Aug 28, 2014
    Messages:
    26
    Location:
    Russia
    ^ Top  
  11. Malignant Manor Learned

    Malignant Manor
    Joined:
    Sep 14, 2013
    Messages:
    213
    Thanks, it does work in XP. Tooltips on the automap stay ghosted instead of disappearing (or moving) and refreshing the map when the mouse moves. Were you able to get the in-game automap save info from Mad God so that you could support preexisting saves and maybe not need to save explored squares anymore?
     
    ^ Top  
  12. KoriTama Novice

    KoriTama
    Joined:
    Aug 28, 2014
    Messages:
    26
    Location:
    Russia
    Hmm... I can't reproduce the issue in Windows XP under VirtualBox. This only occurs in automap window or in the main window, too? It happens only for Wizardry 7(do it works normally for Wizardry 6)? Can you do a screenshot when tooltip displays half outside of window(when it must show and when it must disappear)?

    I didn't understand you. I save explored squares for Standard Mode and use info from preexisting saves in "Skill & Spell" Mode. Did "Skill & Spell" Mode(run via playwiz7_sns_mode.bat) works for you(like in second half of YouTube-clip)?
     
    ^ Top  
  13. Malignant Manor Learned

    Malignant Manor
    Joined:
    Sep 14, 2013
    Messages:
    213
    KoriTama

    Oops, sorry. "Skill & Spell" mode does read the map data. It would be nice if you would import that data into games without existing auto-map mod data files when S&S is disabled (no blank map when using old save game).

    The ghosting (probably not the proper definition) is an issue with W7 auto-map window only with tooltips and the marker popup window. The auto-map window also doesn't redraw when the window regains focus so if it was underneath another window, that part will not update until something forces an update. Here is a screenshot, but I'm still not sure if it is what you want.

    [​IMG]
     
    ^ Top  
  14. Malignant Manor Learned

    Malignant Manor
    Joined:
    Sep 14, 2013
    Messages:
    213
    KoriTama , thanks. That seems to work well.
     
    ^ Top  
  15. logrus Scholar

    logrus
    Joined:
    Aug 13, 2012
    Messages:
    137
    Project: Eternity
    So, finished Wizardry 8 again and this party was my all-time favourite, lots of fun!

    Male Human Samurai - Dual wield Sword + dagger, in the later stages I have also developed him as an offensive spellcaster
    Male Felpurr Monk - fast Martial Arts specialist, psionics were also developed
    Female Dracon Valkyrie - dual wield sword + mace "battlepriest"
    Female Human Bard - archer, pickpocket specialist
    Female Hobbit Gadgeteer - modern weapons sniper, locks & traps specialict
    Female Faerie Bishop - all schools developed, but not enough to learn all level 7 spells (I did no grinding for magic skills, they were developed only through natural usage)

    I had tons of fun with this class, everyone could do some melee or ranged combat or cast spells - directly or through instruments or gadgets. I had multiple characters able to heal, cast buffs or remove status effects. Slow start but after 12-14 levels this party was just awesome, ascension peak was walk in the park on normal and also pretty reasonable on expert. I really recommend this party, it's balanced between might and magic, you are never weak nor overpowered and you can use nearly all cool items you loot.

    I'm still not burned with Wizardry 8, but don't know what to try next... I prefer 6-man parties with no joinable NPCs, but I finished Wiz 8 multiple times with such setup - time to try something else. I'm not sure solo faerie ninja run is my cup of tea... I tried it once (cleared the monastery) and while I like some challenge, the battles become really random - after 20 minutes of battle one lucky shot or applied status effect is game over without a possibility to counter. Not really fun after 3rd reload.

    I think I could try some smaller 2-4 characters party with intensive multiclassing. Anyone tried and succeeded with such setup?
     
    • Brofist Brofist x 3
    ^ Top  
  16. Major_Blackhart Codexia Lord Sodom Patron

    Major_Blackhart
    Joined:
    Dec 5, 2002
    Messages:
    16,251
    Location:
    Jersey for now
    You haven't lived til you've done a 1 man army.
     
    ^ Top  
  17. dopefisher Novice

    dopefisher
    Joined:
    Sep 30, 2014
    Messages:
    6
    Agreed, I've read about people soloing the entire game as a bishop in Wiz 8, although I don't remember what race, if it matters.
     
    ^ Top  
  18. Gnidrologist CONDUCTOR

    Gnidrologist
    Joined:
    Aug 30, 2005
    Messages:
    20,284
    Location:
    is cold
    I did solos with rogue and bishop. They both turn into demigods pretty fast after Arnika. Think the bishop was elf (duh) and rogue felpurr (duh nr2). Also played duo (bishop + lizardman warrior) and 4 men party (forgot the setup - guess it was samurai, warrior, some sort of magic class and bard or gadgeteer)). The later is probably most fun for me because there is enough variety and options to use items, but not too much to micromanage both in combat and inventory.

    I think i did some stealth grinding in monastery with my solo bishop. :oops:
     
    ^ Top  
  19. Major_Blackhart Codexia Lord Sodom Patron

    Major_Blackhart
    Joined:
    Dec 5, 2002
    Messages:
    16,251
    Location:
    Jersey for now
    How do people stealth grind in the monastery?
     
    ^ Top  
  20. Gnidrologist CONDUCTOR

    Gnidrologist
    Joined:
    Aug 30, 2005
    Messages:
    20,284
    Location:
    is cold
    Make rogue/ninja with stats that accommodate switching to your prefered class right from the second level. Find some weak ass enemy like a single crab from starting area or low level poison seekers. Allow them to pummel you in defense only mode. When health gets low, run away and recover. Return for some more. Rinse and repeat. Switch to prefered class when you think it's enough.

    No more than some 10-15 minutes are needed to rise your stealth in 20-30ish. It's cheesy as fuck, but i really don't think my bishop would've survived till Arnika without ridiculous amounts of savescumming otherwise as he has piece of shit magick at those low levels, no means to attack physically and no defenses/hp whatsoever. A little bit of stealth is a life saver. No such problem with rogue, obviously. Rogue is probably the easiest class to solo and gets into fucking Dirzzt in no time.
     
    ^ Top  
  21. Lilura RPG Codex Dragon Lady

    Lilura
    Joined:
    Feb 13, 2013
    Messages:
    5,058
    Approx how many hours did your solo take?
     
    • Shit Shit x 1
    ^ Top  
  22. Gnidrologist CONDUCTOR

    Gnidrologist
    Joined:
    Aug 30, 2005
    Messages:
    20,284
    Location:
    is cold
    I never count my hours and i'm veeeeeery slow player so it's probably a lot, but not more than it would be with full party. In fact i probably spent more time with 6+2 party because of all the added micromanagement and combat options to handle. On top of that, after about level 17-19 solo guy turns into such a killing machine that it is faster to annihilate life with him than a large medium level party.
     
    ^ Top  
  23. logrus Scholar

    logrus
    Joined:
    Aug 13, 2012
    Messages:
    137
    Project: Eternity
    So, decided to start Wizardry 8 again, this time with Dodd's mod. So far it looks cool, I have already encountered new quests and items, some stuff is moved do other places - exploration is fresh again.
    Difficulty is higher, but most fights I can handle. One exception is group of rogues lead by 2-3 Treasure Hunters :x.
    These fuckers are insanely strong as for my low level party. They are capable of casting Freeze All, Sleep, Toxic Cloud, new AoE spell also inflicting poison DoT. It also seems that they have infinite mana. Really tough fights. In Arnika I lead them to guards and it helps a lot since guards are nice meatshields and can stun frequently, but the road to Trynton is hell.
    One group is currently blocking my progress, can't silence treasure hunters fast enough and they paralyze half of my party with toxic cloud running on top and rogues backstabbing my toons to death. For the first time playing Wiz 8 I really start to think of power training and grinding for levels in Arnika.
    Anyone who played with Dodd's mod can share some strategy for dealing with Treasure Hunters?
     
    ^ Top  
  24. Zboj Lamignat Arcane

    Zboj Lamignat
    Joined:
    Feb 15, 2012
    Messages:
    3,555
    Yeah, I played that mod for a bit:

    1. Have someone with paralyze spell and hope it works. Otherwise reload.
    2. Delete the mod, it's a complete mess and a typical case of herp derp imma mod this gaem overload.
     
    • Brofist Brofist x 1
    ^ Top  

As an Amazon Associate, rpgcodex.net earns from qualifying purchases.