Search results

  1. phungus420

    Does anyone have LoR 1.9.9?

    I released a newer "Test version" that had fixed a few bugs and was more advanced, and if I get to working on this project again to release LoR 1.0 I'd like to start with it as the base. Unfortunately the link in the main thread is broken, as the file storing site must have deleted it :(...
  2. phungus420

    Trying to import Events With Images

    Edit: Nevermind, the TriggerEvent.py stuff is unrelated, no wonder I couldn't figure out how I was supposed to connect it. My bad for assuming such. BTW what does TriggerEvent.py do?
  3. phungus420

    RevDCM core and Multiplayer

    We on the RevolutionDCM team would really like to get multiplayer fully supported. We feel it is working now with the new release of 2.81, but we have no real way of knowing. So looking for feedback. Does RoM: AND really work as well or nearly as well as base BtS does in multiplayer? If it...
  4. phungus420

    Finalizations

    The current 0.9.9 build is pretty close to a 1.0 build. The mod is nearly in a finalized state. The only things left to do on my mental list are: get music for the modern and future eras, rename future era to Information Era and implement this along with necessary txt and art, get a system...
  5. phungus420

    Adding a new class to the SDK

    I'd like to remove all the hardcoding from RevDCM. I think the best way to do this is to create a new derivative class of CvGame, CvGameRevolution, and probably something similar for CvPlayer and CvCity (but I'd do that later, right now the core stuff in CvGame is what I'm interested in). How...
  6. phungus420

    Why isn't this becoming false?

    I've been trying to fix an introduced bug caused by the new limited religions game option. Basically founding religions in an advanced start game isn't working correctly, so I wrote a new function to deal with founding religions in the first few turns of a game when a custom game is set to...
  7. phungus420

    onLoadGame in SDK?

    Are there any corresponding functions in the SDK for onLoadGame and onGameStart? Looking in CvGame I can't find anything, but would like to add some initialization code for when a game is loaded, or when it starts in the SDK, and I'd rather not hack it in via python, since it only effects SDK...
  8. phungus420

    Fixing some RevDCM stuff

    Been working on trying to get RevDCM working, and there are a couple issues left. The main two I'm working on now is trying to get a leader change working (if the human selects this option their leader is changed, but the AI takes over for a certain number of turns). In the latest build the...
  9. phungus420

    Getting the RevDCM core working

    Thanks to help from Fuyu and Afforess we are finally getting the big kinks worked out of the RevDCM core, and should have a good stable release out the door pretty soon. One issue still remains though, and is kind of blocking work on the other remaining bugs, as they all revolve around the...
  10. phungus420

    GG BBAI code

    I added some new code to the RevDCM core, that might make it into BBAI, though most of it wouldn't effect a non modded game. Basically the old code went like this: If player feels it is danger: -Look for unit to attach to with specific UnitAI type to attach to, if there is a good one, do it...
  11. phungus420

    LoR and QC joint project

    This thread is for general discussion about a joint project by Avain and I to make available a more standardized "Expansion Pack" type mod. Currently LoR and QC are very similar and in my opinion needlessly compete with each other. Avain is not sure a full merge is the best idea, but will...
  12. phungus420

    How do you sample sound from youtube?

    I'd like to get the sound from this video in MP3 format: http://www.youtube.com/watch?v=5H2MpIBWmOA All I want from it is a short snippet to use as quote for a tech. However I've spent the last 2 hours searching the web and cannot find a sound recording of the conversation with sovereign from...
  13. phungus420

    Charles V diplo text

    A search on these forums found nothing. If anyone has any diplo text for Charles V please let me know, I really don't want to write it all from scratch if someone else already has it done. Edit adendum: Also looking for diplo text for Gustav Adolph, and Trung Trac (or the trung sisters in...
  14. phungus420

    Zero day DLC = disrespecting the customer

    Having thought about this a bit more I have come to the conclusion that the zero day DLC, as announced, amounts to disrespect and contempt by the company toward Civ fans. Having zero day DLC that provides a special gun or an armor or something is pretty normal, and well accepted, but this is...
  15. phungus420

    cannot allocate an array of constant size 0

    How do I create this array? int iReligionInfluence[GC.getNumReligionInfos()] Compiler doesn't like it because: "expected constant expression" (how is getNumReligionInfos() not constant? This cannot change mid game :dunno:) "cannot allocate an array of constant size 0" Anyone know any work...
  16. phungus420

    Calling a base class function

    I'm getting a "getStateReligion() is not a member of CvPlayerAI" from this call in a function in CvCityAI: ReligionTypes eStateReligion = kPlayerAI.getPlayer().getStateRelgion(); using getPlayer() in CvCityAI returns a CvPlayerAI object. CvPlayerAI is a derivative class of CvPlayer (also...
  17. phungus420

    Interface: Religion icon added to tech button

    I've gotten a limited religions component working and fully functional for RevDCM. Had to completely abandon the way others have tried doing it, as things are completely different in the SDK then Python and I've never been satisfied with the functionality of other modcomps that implemented this...
  18. phungus420

    Python Console Mod Tools

    Python Console Mod Tools download This is a simple python utility; it is a modcomp you can easily add to your mod that will give you access to a few very useful functions, especially for modders who do alot of work with unit art. To install simply extract, and put the ModTools folder into your...
  19. phungus420

    Creating Console Command

    Looking at the modcomps forums today, I saw this neat little modcomp by Avain: ShowMeAllDaUnitz Basically it's a function he wrote where when you rename a unit all the units in the game, for every civilization are populated in neat little rows. Very useful for modding. I'd like to...
  20. phungus420

    Leader Switching functionality

    How to select the leader to replace a leader durring an empire wide revolt and a change of leadership is demanded: This has come about because in LoR Constantine has been added in, and he can lead two civilizations. So sometimes if a player is Byzantium and led by Constantine, and then Rome...
Top Bottom