Jump to content
  • 0

[HELP] Questions


Question

Posted

Hey,

i'm kinda new to this scene :/.

Now i wanted to know how i create Farm mobs and their loot.

Since i opened several servers at WoW i know the basics about MySQL, so i know how to create a mob. But not their loot.

 

Would be appreciate when i get some help from u guys :)).

 

Also another question, how do i edit my Gatekeeper , so i can add teleports and how do i make "Arguments skills stackable" not like 1 passive and 1 active.

3 answers to this question

Recommended Posts

  • 0
Posted

to make loot, look at droplist.sql

to add teleport to gatekeeper that depends what kind of gatekeeper u have, i recommend u to find something here on the forum, u will find something cool for sure.

to make augments stackable-on every augment skill make abnormalType="nameOfSkillGroup"

here is example(all skills that have got same abnormalType(here it is "attack_time_down") are going to be stackable):

<skill id="1563" levels="2" name="Fury of Pa'agrio">
	<!-- High Five Skill -->
	<table name="#aggroPoints"> 457 532 </table>
	<table name="#magicLvl"> 48 56 </table>
	<table name="#mpConsume"> 138 164 </table>
	<table name="#mpInitialConsume"> 34 40 </table>
	<table name="#pAtkSpd"> 1.15 1.33 </table>
	<table name="#stackOrder"> 1 2 </table>
	<set name="aggroPoints" val="#aggroPoints" />
	<set name="hitTime" val="2500" />
	<set name="isMagic" val="1" /> <!-- Magic Skill -->
	<set name="magicLvl" val="#magicLvl" />
	<set name="mpConsume" val="#mpConsume" />
	<set name="mpInitialConsume" val="#mpInitialConsume" />
	<set name="operateType" val="A1" /> <!-- FIXME: value unconfirmed -->
	<set name="reuseDelay" val="5000" />
	<set name="skillRadius" val="900" />
	<set name="skillType" val="BUFF" />
	<set name="target" val="TARGET_PARTY_CLAN" />
	<for>
		<effect name="Buff" abnormalTime="1200" val="0" abnormalLvl="#stackOrder" abnormalType="attack_time_down">
			<mul order="0x30" stat="pAtkSpd" val="#pAtkSpd" />
		</effect>
	</for>
</skill>

Guest
This topic is now closed to further replies.


×
×
  • Create New...

Important Information

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..