Jump to content

Kalimero

Inactive Member
  • Posts

    14
  • Joined

  • Last visited

  • Feedback

    0%

About Kalimero

Informations

  • Gender
    Not Telling

Recent Profile Visitors

5859 profile views

Kalimero's Achievements

Apprentice

Apprentice (3/16)

  • First Post
  • Collaborator
  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

2

Reputation

  1. Much better then the offical wolfman I hope for Female version of this and hope to see ingame peresentation . Good Work
  2. quest haustiere begin state start begin -- Setzt den neuen Petnamen in die Datenbank ein function set_pet_name(name) mysql_query("DELETE FROM player.pet_name WHERE id = '"..pc.get_player_id().."'") mysql_query("INSERT INTO player.pet_name(id, name) VALUES('"..pc.get_player_id().."', '"..name.."')") end -- Holt sich den Petnamen aus der Datenbank function get_pet_name() local pet_name = mysql_query("SELECT * FROM player.pet_name WHERE id = '"..pc.get_player_id().."'") return (pet_name.name or {pc.get_name().."'s Haustier"})[1] end -- Feuer-Phönix when 53001.use begin if pet.is_summon() then pet.unsummon() chat("Your pet now says goodbye to you!") affect.remove_collect(apply.ATTBONUS_DEVIL, 30, 60*60*8) affect.remove_collect(apply.ATT_BONUS_TO_MONSTER, 30, 60*60*8) affect.remove_collect(apply.MAX_HP, 3000, 60*60*8) else local old_level = horse.get_level() local old_name = horse.get_name() horse.set_level(22) horse.set_name(haustiere.get_pet_name()) pet.summon() horse.set_level(old_level) horse.set_name(old_name) affect.add_collect(apply.ATTBONUS_DEVIL, 30, 60*60*8) affect.add_collect(apply.ATT_BONUS_TO_MONSTER, 30, 60*60*8) affect.add_collect(apply.MAX_HP, 3000, 60*60*8) chat("The power of the Golden Beast has been summoned ") chat("You Recive 30 Monster...") chat("30 Devils") chat("3000 Hp") end end -- Rentierjunges when 53002.use begin if pet.is_summon() then pet.unsummon() chat(Your pet now says goodbye to you!") affect.remove_collect(apply.STR, 10, 60*60*8) affect.remove_collect(apply.INT, 10, 60*60*8) affect.remove_collect(apply.MAX_HP, 1000, 60*60*8) affect.remove_collect(apply.ATTBONUS_HUMAN, 15, 60*60*8) else local old_level = horse.get_level() local old_name = horse.get_name() horse.set_level(24) horse.set_name(haustiere.get_pet_name()) pet.summon() horse.set_level(old_level) horse.set_name(old_name) affect.add_collect(apply.STR, 10, 60*60*8) affect.add_collect(apply.INT, 10, 60*60*8) affect.add_collect(apply.MAX_HP, 1000, 60*60*8) affect.add_collect(apply.ATTBONUS_HUMAN, 15, 60*60*8) chat("The power of the Baby Panda has been summoned ") chat("You recive 10 against Demi Human,1000k Hp and... ") chat("10 into your Strenght and Intelligence ") end end -- Eis-Phönix when 53003.use begin if pet.is_summon() then pet.unsummon() chat("Your pet now says goodbye to you!") affect.remove_collect(apply.STR, 20, 60*60*8) affect.remove_collect(apply.DEX, 20, 60*60*8) affect.remove_collect(apply.MAX_HP, 3500, 60*60*8) affect.remove_collect(apply.ATTBONUS_HUMAN, 20, 60*60*8) else local old_level = horse.get_level() local old_name = horse.get_name() horse.set_level(23) horse.set_name(haustiere.get_pet_name()) pet.summon() horse.set_level(old_level) horse.set_name(old_name) affect.add_collect(apply.STR, 20, 60*60*8) affect.add_collect(apply.DEX, 20, 60*60*8) affect.add_collect(apply.MAX_HP, 3500, 60*60*8) affect.add_collect(apply.ATTBONUS_HUMAN, 20, 60*60*8) chat("The power of the Phoenix has been summoned ") chat("You recive 20 Against Demi Human 3500 hp and... ") chat("20 into your Strenght and Dexterity ") end end -- Baby-Azrael when 53005.use begin if pet.is_summon() then pet.unsummon() chat("Your pet now says goodbye to you!!") affect.remove_collect(apply.ATT_BONUS_TO_MONSTER, 20, 60*60*8) affect.remove_collect(apply.EXP_DOUBLE_BONUS, 20, 60*60*8) affect.remove_collect(apply.MAX_HP, 2500, 60*60*8) else local old_level = horse.get_level() local old_name = horse.get_name() horse.set_level(25) horse.set_name(haustiere.get_pet_name()) pet.summon() horse.set_level(old_level) horse.set_name(old_name) affect.add_collect(apply.ATT_BONUS_TO_MONSTER, 20, 60*60*8) affect.add_collect(apply.EXP_DOUBLE_BONUS, 20, 60*60*8) affect.add_collect(apply.MAX_HP, 2500, 60*60*8) chat("The power of the Azrael has been summoned ") chat("You recive 20 Against Monster 2500 hp and... ") chat("20 Exp Bonus.") end end -- Baby-Wolfs when 53006.use begin if pet.is_summon() then pet.unsummon() chat("Your pet now says goodbye to you!") affect.remove_collect(apply.STR, 10, 60*60*8) affect.remove_collect(apply.DEX, 10, 60*60*8) affect.remove_collect(apply.MAX_HP, 1000, 60*60*8) affect.remove_collect(apply.ATTBONUS_HUMAN,15, 60*60*8) else local old_level = horse.get_level() local old_name = horse.get_name() horse.set_level(26) horse.set_name(haustiere.get_pet_name()) pet.summon() horse.set_level(old_level) horse.set_name(old_name) affect.add_collect(apply.STR, 10, 60*60*8) affect.add_collect(apply.DEX, 10, 60*60*8) affect.add_collect(apply.MAX_HP, 1000, 60*60*8) affect.add_collect(apply.ATTBONUS_HUMAN,15, 60*60*8) chat("The power of the Baby Wolf has been summoned ") chat("You recive 15 Against Demi Human 1000 hp and... ") chat("10 into your Strenght and Dexterity ") end end -- Baby-Löwen when 53007.use begin if pet.is_summon() then pet.unsummon() chat("Your pet now says goodbye to you!") affect.remove_collect(apply.DEX, 10, 60*60*8) affect.remove_collect(apply.INT, 10, 60*60*8) affect.remove_collect(apply.MAX_HP, 1000, 60*60*8) affect.remove_collect(apply.ATTBONUS_HUMAN, 15, 60*60*8) else local old_level = horse.get_level() local old_name = horse.get_name() horse.set_level(27) horse.set_name(haustiere.get_pet_name()) pet.summon() horse.set_level(old_level) horse.set_name(old_name) affect.add_collect(apply.DEX, 10, 60*60*8) affect.add_collect(apply.INT, 10, 60*60*8) affect.add_collect(apply.MAX_HP, 1000, 60*60*8) affect.add_collect(apply.ATTBONUS_HUMAN, 15, 60*60*8) chat("The power of the Baby Lion has been summoned") chat("You recive 15 Against Demi Human 1000 hp and... ") chat("10 into your Intelligence and Dexterity ") end end -- Baby-Keiler when 53008.use begin if pet.is_summon() then pet.unsummon() chat("Your pet now says goodbye to you!") affect.remove_collect(apply.INT, 20, 60*60*8) affect.remove_collect(apply.STR, 20, 60*60*8) affect.remove_collect(apply.MAX_HP, 3500, 60*60*8) affect.remove_collect(apply.ATTBONUS_HUMAN, 20, 60*60*8) else local old_level = horse.get_level() local old_name = horse.get_name() horse.set_level(28) horse.set_name(haustiere.get_pet_name()) pet.summon() horse.set_level(old_level) horse.set_name(old_name) affect.add_collect(apply.INT, 20, 60*60*8) affect.add_collect(apply.STR, 20, 60*60*8) affect.add_collect(apply.MAX_HP, 3500, 60*60*8) affect.add_collect(apply.ATTBONUS_HUMAN, 20, 60*60*8) chat("The power of the Baby Raptor has been summoned ") chat("You recive 20 Against Demi Human 3000 hp and... ") chat("20 into your Strenght and Intelligence ") end end -- Baby-Tiger when 53009.use begin if pet.is_summon() then pet.unsummon() chat("Your pet now says goodbye to you!") affect.remove_collect(apply.INT, 20, 60*60*8) affect.remove_collect(apply.DEX, 20, 60*60*8) affect.remove_collect(apply.MAX_HP, 3500, 60*60*8) affect.remove_collect(apply.ATTBONUS_HUMAN, 20, 60*60*8) else local old_level = horse.get_level() local old_name = horse.get_name() horse.set_level(29) horse.set_name(haustiere.get_pet_name()) pet.summon() horse.set_level(old_level) horse.set_name(old_name) affect.add_collect(apply.INT, 20, 60*60*8) affect.add_collect(apply.DEX, 20, 60*60*8) affect.add_collect(apply.MAX_HP, 3500, 60*60*8) affect.add_collect(apply.ATTBONUS_HUMAN, 20, 60*60*8) chat("The power of the Lixie has been summoned ") chat("You recive 20 Against Demi Human 3500 hp and... ") chat("20 into your Intelligence And Dexterity ") end end -- Baby-Eisbär when 53014.use begin if pet.is_summon() then pet.unsummon() chat("Your pet now says goodbye to you!") affect.remove_collect(apply.CRITICAL_PCT, 20, 60*60*8) affect.remove_collect(apply.CAST_SPEED, 20, 60*60*8) affect.remove_collect(apply.MAX_HP, 3500, 60*60*8) affect.remove_collect(apply.ATTBONUS_HUMAN, 20, 60*60*8) else local old_level = horse.get_level() local old_name = horse.get_name() horse.set_level(30) horse.set_name(haustiere.get_pet_name()) pet.summon() horse.set_level(old_level) horse.set_name(old_name) affect.add_collect(apply.CRITICAL_PCT, 20, 60*60*8) affect.add_collect(apply.CAST_SPEED, 20, 60*60*8) affect.add_collect(apply.MAX_HP, 3500, 60*60*8) affect.add_collect(apply.ATTBONUS_HUMAN, 20, 60*60*8) chat("The power of the ???? has been summoned ") chat("You recive 20 Against Demi Human 3500 hp and... ") chat("20 Critical and Casting Speed") Chat("DRACARYS!!") end end Hello folks i have a problem compling the quest Can anyone tell me whats wrong and which line ? Thnaks !
  3. SYSERR: May 22 22:23:05 :: DirectQuery: AsyncSQL::DirectQuery : mysql_query error: Column 'name' in field list is ambiguous query: SELECT pid, name, date FROM monarch_candidacy a, player b where a.pid = b.id ? Anyone...
  4. [Hidden Content] this is the screen which apears in putty Syserrr shows only regen errors Any idea how to fix this ? Thanks.
  5. Can someone share Server Side please ?
  6. Does it have the objects with it or just the map ?
  7. Hello folks i cant find where... Where do i edit client tittle ? Not server name Thanks Edit * Client tittle.
  8. Hello folks im having trouble with mob_drop_item and idk what im doing wrong There is some lines copyed from my mob_drop [Hidden Content] ??
  9. Hmm that what i was thinking to from 105 ones increase .. thanks dude
  10. I knoelw wher but was asking how do you increase so its not to much...
  11. Hello i was searching over the internet and did not found any thread post about raising the weapons values can anyone give me a tip how can i do that ? Thanks in advance
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / 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.