Home Gothic Gothic II Gothic 3 Gothic 4 Downloads Forums

 

Seite 1 von 2 12 Letzte »
Ergebnis 1 bis 20 von 22
  1. Beiträge anzeigen #1
    Ranger Avatar von InnerMoon
    Registriert seit
    Feb 2008
    Beiträge
    194
     
    InnerMoon ist offline

    A mod that will be great... (For G2)

    Hi, if this is a wrong section please excuse me.

    Something that I always like from Gothic is the NPC animations. All the npc has a particulary animation that make them especial. For example, How they walk. If a NPC is a Guard, a paladin or someone "Lawful" they walk like marching. The novices and mages have a especial animation when they walk. Some citizen from korhinis walk like if they are tired, others walk like if they are "fresh".

    Well my point is: Is possible to do a mod that make that the hero use this animations when he join to a guild??

    If the hero join to the militia or paladin: Then when he walk he do it like marching.

    If the hero join to the novices/mages: Then when he walk he do it like a novice/mage (with the hands togheter)

    If the hero join to the mercenaries: Then he walk like fresh people.

    Maybe is something stupid, but I thing that how the hero walk is the UGLIEST animation to walk.

  2. Beiträge anzeigen #2
    Local Hero Avatar von DarkHermes
    Registriert seit
    Feb 2009
    Beiträge
    237
     
    DarkHermes ist offline

    ^_^

    so true) he walks like a faget

  3. Homepage besuchen Beiträge anzeigen #3
    Demigod Avatar von Bastardo
    Registriert seit
    Aug 2007
    Ort
    {I} {T}rust {A}nd {L}ove {Y}ou
    Beiträge
    9.412
     
    Bastardo ist offline
    To be honest, I don't know why PB didn't include that feature in the original game, it just seems natural to me and I have your same thoughts every time I see an NPC walking differently than the average.

    I bet it would be a very simple mod for who already knows his way in Gothic modding.

  4. Beiträge anzeigen #4
    Ritter Avatar von DTR
    Registriert seit
    Aug 2007
    Beiträge
    1.689
     
    DTR ist offline
    Unless the animation selection is constant.

    Load once at the startup based on characters definitions, and never allow modifications - style.

    If this is the case, then it might require some creative workarounding to create the guild based animation scheme.

    Mostly wondering why we havent treated one already. This might be the reason.

  5. Beiträge anzeigen #5
    Ranger Avatar von InnerMoon
    Registriert seit
    Feb 2008
    Beiträge
    194
     
    InnerMoon ist offline
    Zitat Zitat von DTR Beitrag anzeigen
    Unless the animation selection is constant.

    Load once at the startup based on characters definitions, and never allow modifications - style.

    If this is the case, then it might require some creative workarounding to create the guild based animation scheme.

    Mostly wondering why we havent treated one already. This might be the reason.
    But I remember that using some consoles commands you can assign a walk animation to the hero.

  6. Beiträge anzeigen #6
    General Avatar von Korianous
    Registriert seit
    Jun 2008
    Ort
    USA
    Beiträge
    3.080
     
    Korianous ist offline
    This thread would be better in the Gothic Modding forum. Changing the anims would not be an entirely simple thing, but wouldn't be too difficult either.
    Ach Fry, Ich hab dich mehr als der Monde, die Sterne...das...fail.

  7. Beiträge anzeigen #7
    Ranger Avatar von InnerMoon
    Registriert seit
    Feb 2008
    Beiträge
    194
     
    InnerMoon ist offline
    Well, I found again the cheats that let us give the animation to the hero:

    "apply overlaymds humans_mage" --> The hero walk like a mage
    "apply overlaymds humans_acrobatic" --> When the hero jump, he does an acrobatic way.
    "apply overlaymds humans_arrogance" --> The hero walk like a mercenary
    "apply overlaymds humans_militia" --> The hero walk marching
    "apply overlaymds humans_babe" --> The hero walk like a sisy girl
    "apply overlaymds humans_relaxed" --> This is the FRESH walk that I said. Is used by peasant
    "apply overlaymds humans_sprint" --> The hero runs like a thief (for example when rengaru runs from you)
    "apply overlaymds humans_tired" --> The hero walk like he was tired (the matheo's apprentice walk like this)


    So, I suppose that with this codes is posibble to do a Mod (maybe activating this codes when the hero wear a guild armor).

  8. Beiträge anzeigen #8
    Ritter Avatar von DTR
    Registriert seit
    Aug 2007
    Beiträge
    1.689
     
    DTR ist offline
    Thats the thing.
    We would need a script launched on such event.

    What would detect the event?
    What would cause the actual action to be taken based on even?

    Solving these two would go a long way.

  9. Homepage besuchen Beiträge anzeigen #9
    Demigod Avatar von Bastardo
    Registriert seit
    Aug 2007
    Ort
    {I} {T}rust {A}nd {L}ove {Y}ou
    Beiträge
    9.412
     
    Bastardo ist offline
    And which event would be better, new guild affiliation or right armour worn?

  10. Homepage besuchen Beiträge anzeigen #10
    Knight Avatar von Altair-AoD
    Registriert seit
    Dec 2007
    Beiträge
    1.262
     
    Altair-AoD ist offline
    Maybe we should have an emotions bar. Can you make him do the jig please ?
    [Bild: Jig.gif]

  11. Beiträge anzeigen #11
    Hero Avatar von Tratos
    Registriert seit
    Sep 2006
    Ort
    Coventry, United Kingdom
    Beiträge
    5.939
     
    Tratos ist offline
    Moved to Gothic Modding Section.

    I too always wanted those animations to be made permanent.

  12. Beiträge anzeigen #12
    General Avatar von Korianous
    Registriert seit
    Jun 2008
    Ort
    USA
    Beiträge
    3.080
     
    Korianous ist offline
    Hmm, you guys could be on to something. A possible idea would be adding some conditions in the NH's script (PC_Hero.d), to check if he has joined a certain guild, and applying the desired overlay. Off the top of my head, I believe it would go something like this:
    Code:
    	if ((hero.guild == GIL_MIL) || (hero.guild == GIL_PAL))
    	{
    		Mdl_ApplyOverlayMds("Humans_Militia.mds");
    	}	
    	else if ((hero.guild == GIL_SLD) || (hero.guild == GIL_DJG))
    	{
    		Mdl_ApplyOverlayMds("Humans_Arrogance.mds");
    	}
    	else if (hero.guild == GIL_KDF)
    	{
    		Mdl_ApplyOverlayMds("Humans_Mage.mds");
    	}
    	else
    	{
    		Mdl_ApplyOverlayMds("Humans_Relaxed.mds");
    	};
    Basically, if the hero is a member of the Militia or the Paladins, he will walk as other members of that guild do. If he is a Mercenary or Dragon Hunter, he will walk as such. A Fire Mage will do the arms folded walk. I haven't tested this myself, but I think that would be a possible approach. There are other ways of doing this as well, that's just my idea.
    Ach Fry, Ich hab dich mehr als der Monde, die Sterne...das...fail.
    Geändert von Korianous (14.03.2009 um 15:23 Uhr)

  13. Beiträge anzeigen #13
    Hero Avatar von Tratos
    Registriert seit
    Sep 2006
    Ort
    Coventry, United Kingdom
    Beiträge
    5.939
     
    Tratos ist offline
    I believe you missed the "novice" condition in your code. Novices walk, arm folded too. It would also be great if we used that in CSI. Pretty please.

  14. Beiträge anzeigen #14
    Ranger Avatar von InnerMoon
    Registriert seit
    Feb 2008
    Beiträge
    194
     
    InnerMoon ist offline
    So, Is it possible to do?? If you help me, I can start with this (I never did a mod for Gothic)

    How can we start?

  15. Beiträge anzeigen #15
    Deus Avatar von WernerTWC
    Registriert seit
    Feb 2005
    Ort
    Germany/NRW
    Beiträge
    13.341
     
    WernerTWC ist offline
    Zitat Zitat von InnerMoon Beitrag anzeigen
    (I never did a mod for Gothic)

    How can we start?
    To get "warm" with modding in general i would like to recommend you to watch these two tutrials:

    http://www.worldofgothic.com/dl/?go=dlfile&fileid=124

    http://www.worldofgothic.com/dl/?go=dlfile&fileid=125

  16. Beiträge anzeigen #16
    General Avatar von Korianous
    Registriert seit
    Jun 2008
    Ort
    USA
    Beiträge
    3.080
     
    Korianous ist offline
    Zitat Zitat von Tratos Beitrag anzeigen
    I believe you missed the "novice" condition in your code. Novices walk, arm folded too. It would also be great if we used that in CSI. Pretty please.
    Oh yeah, thanks .

    Zitat Zitat von InnerMoon Beitrag anzeigen
    So, Is it possible to do?? If you help me, I can start with this (I never did a mod for Gothic)

    How can we start?
    Of course I will .

    Werner's tutorial tips will help. You may also want to check my tips here. IMO it would be a cool thing to implement. If you want to learn modding, try this out, it would be a nice approach.
    Ach Fry, Ich hab dich mehr als der Monde, die Sterne...das...fail.

  17. Beiträge anzeigen #17
    Ranger Avatar von InnerMoon
    Registriert seit
    Feb 2008
    Beiträge
    194
     
    InnerMoon ist offline
    Well I tried to install the Gothic 2 Mod tool... but the installer is in german and it dont let me install the tool because apparently they need the 2.6 version of the game and I have the 2.7.

    Here is a screenshoot of the problem:[Bild: errorizu.jpg]

  18. Beiträge anzeigen #18
    Deus Avatar von WernerTWC
    Registriert seit
    Feb 2005
    Ort
    Germany/NRW
    Beiträge
    13.341
     
    WernerTWC ist offline
    Zitat Zitat von InnerMoon Beitrag anzeigen
    Well I tried to install the Gothic 2 Mod tool... but the installer is in german and it dont let me install the tool because apparently they need the 2.6 version of the game and I have the 2.7.
    This should help:
    http://forum.worldofplayers.de/forum...7&#post3064197

  19. Beiträge anzeigen #19
    Ranger Avatar von InnerMoon
    Registriert seit
    Feb 2008
    Beiträge
    194
     
    InnerMoon ist offline
    I saw the tutorials, but I still dont know how edit the pc_hero.d???

    Is with spacer? And it is so, how can I do it?

  20. Beiträge anzeigen #20
    Ritter Avatar von DTR
    Registriert seit
    Aug 2007
    Beiträge
    1.689
     
    DTR ist offline
    Now I am not familiar with the way G2 scripting is handled, but...

    On what occasion is that script run?
    Is it based on some sort of "onEnvent()" thingy, or does it just blindly poll the situation on the background? Or is it ran at the startup?

    Perhaps the animation changes could be piggybacked in the "event" scripts such as joining the faction and or getting promoted to an advanced class?


    That code would seem nice and well, but when is it executed. Thats what I would love to know.
    Geändert von DTR (15.03.2009 um 21:50 Uhr)

Seite 1 von 2 12 Letzte »

Berechtigungen

  • Neue Themen erstellen: Nein
  • Themen beantworten: Nein
  • Anhänge hochladen: Nein
  • Beiträge bearbeiten: Nein
Impressum | Link Us | intern
World of Gothic © by World of Gothic Team
Gothic, Gothic 2 & Gothic 3 are © by Piranha Bytes & Egmont Interactive & JoWooD Productions AG, all rights reserved worldwide