Jump to content

A-error

Members
  • Posts

    485
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by A-error

  1. # Class Master # ------------ # Config for special Class Master npc that can change players occupation # If you need change occupation only use quest then set this to false (default) # Syntax: occupation number;[required item id(count)],[],...;[reward item id(count)],[],...;occupation number... # Examples: # # ConfigClassMaster=1;[57(100000)];[];2;[57(1000000)];[];3;[57(10000000)],[5575(1000000)];[6622(1)] # 1st occupation change for 100.000 Adena (item id 57) # 2nd occupation change for 1.000.0000 Adena (item id 57) # 3rd occupation change for 10.000.0000 Adena (item id 57) and 1.000.000 Ancient Adena (item id 5575) # on 3rd occupation change player will be rewarded with 1 Book of Giants (item id 6622) # # ConfigClassMaster=1;[];[];2;[];[];3;[];[] # 1st, 2nd, 3rd occupation change for free, without rewards ConfigClassMaster = 1;[];[];2;[];[];3;[];[6622(1)] # Spawn Class Master npc if you have any in spawnlist. default = false SpawnClassMaster = true # Allows Strider Update ClassMasterUpdateStrider = false file kane ayto copy ekei pou einai i clanmaste sto config kai 8a eisai ok opos to exo omos..
  2. can I welcome this but it is within me because I make the picture as
  3. pigene gameserver\config/rates kai 8a breis kapoia apo ayta edo mesa # ================================================================= # NORMAL RATES # ================================================================= # Rate control, float values RateXp = 1. RateSp = 1. RatePartyXp = 1. RatePartySp = 1. RateDropAdena = 1. RateConsumableCost = 1. RateDropItems = 1. RateRaidDropItems = 1. RateDropSpoil = 1. RateDropManor = 1 # NOTE: this need quests to be rewritten in dp in order to work RateDropQuest = 1. RateQuestsReward = 1. RateKarmaExpLost = 1 RateSiegeGuardsPrice = 1 # Player Drop Rate control, values are the percent values PlayerDropLimit = 0 PlayerRateDrop = 0 PlayerRateDropItem = 0 PlayerRateDropEquip = 0 PlayerRateDropEquipWeapon = 0 # Karma Drop Rate control, values are the percent values KarmaDropLimit = 10 KarmaRateDrop = 40 KarmaRateDropItem = 50 KarmaRateDropEquip = 40 KarmaRateDropEquipWeapon = 10 # Multiplier for pet rate control (with lower values pet will grow slower) PetXpRate = 1. # Pet Food Rate control, 1 food = PetFoodRate PetFoodRate = 1 # SinEater exp rate SinEaterXpRate =1. # ================================================================= # HERBS RATES # ================================================================= # Herb of Power, Herb of Magic, Herb of Atk. Spd., Herb of Casting Spd., Herb of Critical Attack, Herb of Speed RateCommonHerbs = 15. # Herb of Life, Herb of Mana RateHpMpHerbs = 10. # Greater herb of Life, Greater Herb of Mana RateGreaterHerbs = 4. # Superior Herb of Life, Superior Herb of Mana RateSuperiorHerbs = 0.8 # Herb of Warrior, Herb of Mystic, Herb of Recovery RateSpecialHerbs = 0.2 kai kaneta opos 8eleis esu
  4. kane copy ayto pou blepeis stin arxi tou post opos einai kai 8a einai ok.. alla ti pack server exeis ?
  5. hi paidia 8a i8ela na rotiso exo ena server kai 8elo na kano update to pack alla exei kai new sql gia tin navi me kati kainouria pou exoun perasei.. px. mesa stous characters exoun perasei kati alla kai 8elo na kano pali ta tools ins kai na kratiso ta acc ta items kai tis clan pos mporo na to kano.. ty
  6. file bale new link na to kanoume donwload allios kapoios na to kanei close to post
  7. Hi paidia 8elo na na ftia3o mesa ston system otan o allos brizei na ta bgazei me _-- i kati tetio mporeis na mou pei kaneis pos mporona to kano,., ty
  8. ks in children that can make the npc moving to the other passed through the id of the npc you have put me in as you make gatekeepe once you tell me what to do to make the .. the npc is terrible
  9. oriste file exo mporeis na kaneis ayto pou 8eleis http://www.maxcheaters.com/forum/index.php?topic=47703.0
  10. file to link exei problima ama mporeis ftia3to..
  11. hi paidia 8a i8ela na ma po exo mia nobless custom kai 8elo na kano otan paei o allos 80lvl sto main tou na pataei kai na tou dinei ton nobless edo einai to __init__ tis custom nobless qn = "9998_Noble" NPC=[10003] NOBLESS_TIARA = 7694 ADENA_ID=57 InitialHtml = "1.htm" LUNARGENT = 5556 HELLFIRE_OIL = 3470 class Quest (JQuest) : def __init__(self,id,name,descr): JQuest.__init__(self,id,name,descr) def onEvent(self,event,st): htmltext = event count=st.getQuestItemsCount(ADENA_ID) countluna=st.getQuestItemsCount(LUNARGENT) counthell=st.getQuestItemsCount(HELLFIRE_OIL) if count < 1 : htmltext = "<html><head><body>YIou dont haCve enouEgh adena.</body></html>" else: if event == "1": if st.getPlayer().isNoble() : return "noble.htm" st.setState(COMPLETED) if not st.getPlayer().isSubClassActive() : return "noSub.htm" st.setState(COMPLETED) if st.getPlayer().getLevel() < 75 : return "toLow.htm" st.setState(COMPLETED) if not st.getPlayer().isNoble() : if st.getPlayer().isSubClassActive() : if st.getPlayer().getLevel() >= 75 : if countluna == 0 and counthell == 0 : st.takeItems(LUNARGENT,5) st.takeItems(HELLFIRE_OIL,1) st.getPlayer().setNoble(True) st.giveItems(NOBLESS_TIARA,1) return "grat.htm" st.setState(COMPLETED) else : return "noMat.htm" st.setState(COMPLETED) if event == "2": return "no.htm" st.setState(COMPLETED) if htmltext != event: st.setState(COMPLETED) st.exitQuest(1) return htmltext def onTalk (self,npc,st): htmltext = "<html><head><body>I have nothing to say to you</body></html>" st = st.getQuestState(qn) st.setState(STARTED) return InitialHtml QUEST = Quest(9998,qn,"Noble") CREATED=State('Start',QUEST) STARTED=State('Started',QUEST) COMPLETED=State('Completed',QUEST) QUEST.setInitialState(CREATED) for npcId in NPC: QUEST.addStartNpc(npcId) QUEST.addTalkId(npcId) print "importing quests: 9998: Noble NPC"
  12. File i buffer sou exei problima prospa8ise na tin alla3eis kai na dokimaseis alles buffer.. kai emena ayto mou ebgaze alla to fix
  13. Files sto pack sou mesa ston gameserver uparxei enas fakelos pou legete <<<<log>>> edo mesa pernane ola ayta pou 8eleis na blepeis esu.. kai prepei na pas sta config kai na breis ayto edo # ================================================================= # Logging features # ================================================================= # Logging ChatWindow LogChat = True # Logging Item handling NOTE: This can be very space consuming if enabled for all items. LogItems = True # Log GM actions GMAudit = True kai na ta kaneis etsi kai eisai ok..
  14. can make you tell me how can I make apella Tin Tin to wear all oi char plz
  15. den einai ekei to epsa3a.. ti allo mporo na kano ?
  16. Hi paidia exo l2jcteam pack gracia kai psaxno mesa sta config na kano tin Apella na tin forane oloi alla den to brisko mporeis kapoios na mou pei ti mporo na kano?
  17. file pare ayto to link: http://www.maxcheaters.com/forum/index.php?topic=51189.0 edo exei geodata katebase kai to L2jfree_Game+Data giati exei mesa kati arxia pou 8a xriasteis. molis katebaseis tin geodata party 1 and 2 tote 8a pas edo:F:\l2jfree\-Game\data\geodata. kai 8a peraseis mesa tin geodata..opos sou eipa mesa L2jfree_Game+Data 8a sou exei pali data\geodata 8a pas kai 8a pareis ta 2 arxia. to ekana legete:Readme kai to allo geo_index kai 8a eisai ok..
  18. hi paidia Mporeite na m peite pws allazw to loading screen sto server m ?
  19. paidia elisa to problima metin buffer kapoios delete.. to post
  20. to problima li8ike kapoios na close to post.. :P
  21. file oriste ena link na ftia3eis tin cat.. http://www.maxcheaters.com/forum/index.php?topic=36287.0 tin exo deis pos prepei na ti kaneis pisteyo na einai ok meta
  22. mporeis na baleis mia photo na tin do.. na sou po ti einai ?
×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock