Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Tutorial]Arrow Rain(effect)

Status
Not open for further replies.
Newbie Spellweaver
Joined
Aug 21, 2008
Messages
46
Reaction score
31
How to make Arrow Rain(effect)
Motions Should be done by now

Files needed:
Fx0.dat
Fx4.dat
Files can be found in>Data/Effect/Fx
you have to convert the .dat files into .txt files

Search in Fx0 for "davi_ef132_01"


Then Search in Fx4 for "effect_ef068a"




Copy
Code:
{
	description	""
	{
		particle	"davi_ef132_01"
		model		""
		sound		"SE010007"
		effectBoneIndex    -1
		delay		0.000000
		duration	1.000000
		restart	0
		offset		( 0.000000 0.000000 0.000000 )
		rotationYawPitchRoll   ( 0.000000 0.000000 0.000000 )
	}
	{
		particle	"davi_ef132_02"
		model		""
		sound		""
		effectBoneIndex    -1
		delay		1.000000
		duration	1.000000
		restart	0
		offset		( 0.000000 0.000000 0.000000 )
		rotationYawPitchRoll   ( 0.000000 0.000000 0.000000 )
	}
}

into
Code:
{
	description	""
	{
		particle	"Player_EF_code_EF068a"
		model		""
		sound		""
		effectBoneIndex	-1
		delay		0.000000
		duration	2.000000
		restart		0
		offset		( 0.000000 0.000000 0.000000 )
	}
}

and Delete the complete Stats(info) on "davi_ef132_01" Including the name

so you will get somthing like this

Fx4



Fx0


Pictures uploaded with

Hopefully this is understandable

Thanks goes to:
Soul666
for helping me get the names:)
 
Status
Not open for further replies.
Back
Top