Code Monkey home page Code Monkey logo

Comments (5)

ElGoncen avatar ElGoncen commented on May 30, 2024 1

Amazing, it worked! Thank you very much, it saved me a lot of work time, you are geniuses.
Would there be a problem if I share this information as a tutorial in my language on my blogs and sites like steam?

from aoe2scenarioparser.

KSneijders avatar KSneijders commented on May 30, 2024 1

Glad it worked!
And of course not! Share it as much as you want 😄 - a link to the github page would of course be appreciated but nothing is mandatory.
I'll close this issue for now. If you have any other questions, feel free to create a new issue 🙂

from aoe2scenarioparser.

KSneijders avatar KSneijders commented on May 30, 2024

Hey!
Just so I understand, you're trying to copy triggers from one scenario and basically paste them on top of an existing scenario? Right?
If so, are there triggers in the other scenarios and if so, do you want to keep them?

A simple example which will override all triggers in the other scenarios is:

from AoE2ScenarioParser.scenarios.aoe2_de_scenario import AoE2DEScenario

trigger_scenario = AoE2DEScenario.from_file("PATH_TO_FILE_WITH_TRIGGERS.aoe2scenario")
other_scenario = AoE2DEScenario.from_file("PATH_TO_SCENARIO_TO_PASTE_TRIGGERS.aoe2scenario")

other_scenario.trigger_manager.triggers = trigger_scenario.trigger_manager.triggers

other_scenario.write_to_file("OUTPUT_PATH.aoe2scenario")

Hope that helps :)
Let me know if you have any other questions

from aoe2scenarioparser.

ElGoncen avatar ElGoncen commented on May 30, 2024

If that's what I'm looking for, thank you very much. But is there a way that the existing triggers in the other scenario would not be deleted or invalidated?

Excuse my English, I use a translator

from aoe2scenarioparser.

KSneijders avatar KSneijders commented on May 30, 2024

Your English is fine, don't worry. Yeah the existing triggers can also be kept!

Just replace the = with a += like below

other_scenario.trigger_manager.triggers += trigger_scenario.trigger_manager.triggers

from aoe2scenarioparser.

Related Issues (19)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.