Jump to content
  • 0
Sign in to follow this  
hownter

Habilitar x item drop en un mob

Question

Hola a toda la comunidad, estoy iniciando en esto de administrar un servidor y queria consultarles... como hago para agregar el drop de los Crimson Weapons en los mobs corresondientes.. ya modifique la mob_db en sus respectivos mobs pero no se dropean.. tengo que modificar algun otro archivo?

Share this post


Link to post
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Buen dia amigo hacer drops custom en monsters es muy simple:

1.- Tienes que asegurarte que el item este siendo leido correctamente por el emulador, es decir que lo hayas agregado bien en tu item_db.conf, de preferencia has una prueba de @item id  si te parece el item correctamente y sin errores entonces pasa al punto 2.

2.- Para habilitar un drop custom en un mob tienes que editar el mob_db.conf en la ultima sección que se llama Drops, por ejemplo:

Spoiler

Mounstro Original SCORPION:

Spoiler


{
	Id: 1001
	SpriteName: "SCORPION"
	Name: "Scorpion"
	Lv: 16
	Hp: 153
	Sp: 1
	Exp: 108
	JExp: 81
	AttackRange: 1
	Attack: [33, 7]
	Def: 16
	Mdef: 5
	Stats: {
		Str: 12
		Agi: 15
		Vit: 10
		Int: 5
		Dex: 19
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1564
	AttackMotion: 864
	DamageMotion: 576
	MvpExp: 0
	Drops: {
		Boody_Red: 70
		Scorpions_Tail: 5500
		Elunium_Stone: 57
		Solid_Shell: 210
		Fine_Grit: 100
		Yellow_Herb: 200
		Lusty_Iron: 20
		Scorpion_Card: 1
	}
},

 

Mounstro EDITADO SCORPION:

Spoiler


{
	Id: 1001
	SpriteName: "SCORPION"
	Name: "Scorpion"
	Lv: 16
	Hp: 153
	Sp: 1
	Exp: 108
	JExp: 81
	AttackRange: 1
	Attack: [33, 7]
	Def: 16
	Mdef: 5
	Stats: {
		Str: 12
		Agi: 15
		Vit: 10
		Int: 5
		Dex: 19
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1564
	AttackMotion: 864
	DamageMotion: 576
	MvpExp: 0
	Drops: {
		Boody_Red: 70
		Scorpions_Tail: 5500
		Elunium_Stone: 57
		Solid_Shell: 210
		Scorpion_Card: 1
		Scarlet_Bible: 100  //Crimson Bible - Id: 28604
	}
},

 

Item usado para la demostración:
Nota Importante:
El valor que te va servir para hacer que este item se dropeado por otros monstruos es el "AegisName"

Spoiler


{
	Id: 28604
	AegisName: "Scarlet_Bible"
	Name: "Crimson Bible"
	Type: "IT_WEAPON"
	Buy: 20
	Weight: 450
	Atk: 45
	Range: 1
	Slots: 2
	Job: {
		Priest: true
		Sage: true
		Star_Gladiator: true
	}
	Loc: "EQP_WEAPON"
	WeaponLv: 3
	EquipLv: 70
	Subtype: "W_BOOK"
	Script: <"
		bonus bUnbreakableWeapon,0;
		bonus bAtk,((min(getrefine(),15)) ** (2));
		bonus bMatk,((min(getrefine(),15)) ** (2))/2;
		if(BaseLevel>70) { bonus bAtk,(((BaseLevel-70)/10)*5); }
	">
},

 

 

 

Edited by OmarAcero

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.