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!

How does script.enc and script_msg.enc work?

Skilled Illusionist
Joined
Apr 17, 2010
Messages
323
Reaction score
23
I am two days to figure it out! I have old script.enc and script_msg.enc and the forgotten temple b2f (awakened) is fine. the problem is the script.enc and script_msg.enc was so buggy to other quest. so I found other script.enc and script_msg.enc 95% free from bugs. So I decided to put a forgotten temple b2f(awakened) to other script.enc and script_msg.enc. but after a day of configure. I tried to check if working now the problem is the quest inside the FT2 Awakened cannot click. can you give me a sample how does the script.enc and script_msg.enc work?

here is the one line of my sample.

script_msg.enc
Code:
		<msg id="15004" msg_uid="00001360_0_1ST_1_0_89_1" cont="This note must have been left by the doctor rumored to build this place during Honorable Age. \ \It is torn and weathered, but seems to contain useful information to know how this place is built, and what you can find within. \ \" />


script.enc
Code:
		<case id="4566" type="0" cont="[COLOR="#FF0000"]1290,0[/COLOR]" op="-1" /> <-----------------------------------I dont know where is the [COLOR="#FF0000"]cont="1290,0"[/COLOR] came from.




		<case_set id="4566">
			<case_type id="[COLOR="#FF0000"]3569[/COLOR]" />   <-----------------------------------I dont know where is the [COLOR="#FF0000"]id="3569"[/COLOR] came from.
		</case_set>




		<phrase id="6607" cont="15004">
			<child cont="15005" order="1" link_id="6608">
				<event order="1" id="-1" param="" />
			</child>
		</phrase>





		<npc_script id="759" world_id="17" npc_id="1">
			<npc_case id="4566" phrase_id="6607" [COLOR="#FF0000"]order="2660"[/COLOR] />   <-----------------------------------I dont know where is the [COLOR="#FF0000"]order="2660"[/COLOR] came from.  
		</npc_script>

Anyone give me a sample or assist. thanks in advance!!
 
Skilled Illusionist
Joined
Apr 17, 2010
Messages
323
Reaction score
23
So share what u solved. Maybe others will search for same thing?

Code:
<case id="4566" type="0" cont="1290,0" op="-1" />

the cont="1290,0" is coming from

Code:
<msg id="15004" msg_uid="0000[COLOR="#FF0000"]1360_0[/COLOR]_1ST_1_0_89_1" cont="This note must have been left by the doctor rumored to build this place during Honorable Age. \ \It is torn and weathered, but seems to contain useful information to know how this place is built, and what you can find within. \ \" />

Code:
msg_uid="00001360_0_1ST_1_0_89_1"

cont="1360,0"

I dont have an idea about case_set but maybe the same in case type. it depend on the increment of an ID's

Code:
<case_set id="4566">
			<case_type id="4566" />
		</case_set>

npc_case id="4566" is same in case_set id="4566"

case id="4566" and set id="4566" depend on the increment of an ID's

I dont have an idea bout this order="2660"
 
Upvote 0
Back
Top