We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To install wiki as code chosen pip install mkdocs mkdocs-material
make new project : mkdocs new pydofus2_wiki cd pydofus2_wiki
Edit the mkdocs.yml to create a doc for events site_name: Pydofus2 Events Documentation theme: name: material
nav:
creer un dossier pour rassembler les fichier .yml des doc d'events and add first .md for the job_experience event events/job_experience_update.md
This event is fired when a job gains experience.
oldJobXp
jobExp
JobExperience
KernelEventsManager().on(KernelEvent.JobExperienceUpdate, self.onJobExperience) def onJobExperience(self, event, oldJobXp, jobExp): Logger().info(f"Job {jobExp.jobId} has gained {jobExp.jobXP} xp")
mkdocs serve
The text was updated successfully, but these errors were encountered:
hadamrd
No branches or pull requests
To install wiki as code chosen
pip install mkdocs mkdocs-material
make new project :
mkdocs new pydofus2_wiki
cd pydofus2_wiki
Edit the mkdocs.yml to create a doc for events
site_name: Pydofus2 Events Documentation
theme:
name: material
nav:
Add other events here
creer un dossier pour rassembler les fichier .yml des doc d'events and add first .md for the job_experience event
events/job_experience_update.md
Job Experience Update Event
Description
This event is fired when a job gains experience.
Parameters
oldJobXp
: The previous job experience value.jobExp
: An instance ofJobExperience
containing the job ID and the gained experience.Example Usage
To start server
mkdocs serve
The text was updated successfully, but these errors were encountered: