This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..
Question
heladito
hi guys! im trying to write a script for clean the pk of character. Only have a part of them. Anyone can help me to finish it? please
def onEvent(self,event,st): htmltext = event count=st.getQuestItemsCount(57) if count < 5 : htmltext = "ErrorAdena.htm" elif st.getPlayer().getPkKills() < 5 : htmltext = "ErrorPkKills.htm" else: st.getPlayer().setTarget(st.getPlayer()) if event == "RemovePk": st.takeItems(57,5) st.getPlayer().setPkKills(st.getPlayer().getPkKills() - 5) st.playSound("ItemSound.quest_finish") st.setState(COMPLETED) return "End.htm" if htmltext != event: st.setState(COMPLETED) st.exitQuest(1) return htmltext0 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now