Nikis-Knight
Deity
Meaning the music, I think. Not the other vocation.Can you provide a sample of something you have already done?

Meaning the music, I think. Not the other vocation.Can you provide a sample of something you have already done?
Can you provide a sample of something you have already done?
ask your friend if his company is looking for a 2d/3d artist (well, not yet artist, but i am learning fast)
![]()
Well, if you don't ask for money, he will not care wether you are a proffesinal artist or not. That's why he didn't care wether I am a real musician or not![]()
which version are you talking about?Okay, where can I find that version?![]()
Hey design team, how did you guys get the gender related diplomacy modifiers to work? I'm trying to add a new leader into the game but I can't figure out how to get Falamar and Os-Gabella to recognize that this leader is female.
What value in what XML file do I have to change in order to make the mana node improvements appear smaller? They are much larger than any other improvement (or city or unit...).
Your harbors seem to all properly face the sea! How did you fix the harbor graphic orientation problem? (Maybe Firaxis also wants to know...)
No, it is a gender thing. Os-Gabella hates men, and the ladies love Falamar (and vice-versa)Oh... I think what that those two are commenting more on the fact that whoever you are playing is mortal, not that your a man...
Improvement sizes are set int he CIV4ArtDefines_Inprovement.xml file. The attribute you are looking for is fScale (make it smaller to shrink the size of the improvement).
Im not sure abotu the harbour. To my knowledge that hasn't been changed from the default.
I had to add a new SDK function to do that. Its not in vanilla.
Well thanks for the reply but where can I find the SDK function? I tried looking through the source files of the FFH source so that I could get an idea of how the function works but after seeing how long some of the source files were, I tried searching for only the changes that you guys tagged instead of going line by line. Maybe I just wasn't paying enough attention to my search but I just could not find the function!
Added a isMale() function to players
version: 0.16
CvPlayer.cpp
Code://FfH: Added by Kael 09/07/2006 bool CvPlayer::isMale() { if (getLeaderType() == (LeaderHeadTypes)GC.getInfoTypeForString("LEADER_CAPRIA") || getLeaderType() == (LeaderHeadTypes)GC.getInfoTypeForString("LEADER_ETHNE") || getLeaderType() == (LeaderHeadTypes)GC.getInfoTypeForString("LEADER_ARENDEL") || getLeaderType() == (LeaderHeadTypes)GC.getInfoTypeForString("LEADER_THESSA") || getLeaderType() == (LeaderHeadTypes)GC.getInfoTypeForString("LEADER_HANNAH") || getLeaderType() == (LeaderHeadTypes)GC.getInfoTypeForString("LEADER_RHOANNA") || getLeaderType() == (LeaderHeadTypes)GC.getInfoTypeForString("LEADER_VALLEDIA") || getLeaderType() == (LeaderHeadTypes)GC.getInfoTypeForString("LEADER_MAHALA") || getLeaderType() == (LeaderHeadTypes)GC.getInfoTypeForString("LEADER_KEELYN") || getLeaderType() == (LeaderHeadTypes)GC.getInfoTypeForString("LEADER_SHEELBA") || getLeaderType() == (LeaderHeadTypes)GC.getInfoTypeForString("LEADER_FAERYL") || getLeaderType() == (LeaderHeadTypes)GC.getInfoTypeForString("LEADER_ALEXIS") || getLeaderType() == (LeaderHeadTypes)GC.getInfoTypeForString("LEADER_OS-GABELLA")) { return false; } return true; } //FfH: End Add
CvPlayer.h
Code://FfH: Added by Kael 09/07/2006 bool isMale(); //FfH: End Add
Looks like I'll have to either try to clone one of those leaders or replace that leader entirely. Thanks for the help Kael.
any word on weather or not basium/heberum is gonna b a playable leader?