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!

WZ remove light bulb above your head

Junior Spellweaver
Joined
Mar 19, 2016
Messages
100
Reaction score
0
Hello any one explain to me how to remove the Light bulb above the player's head?

its for few quets, but i want remove completly the light bulb from my server.
Any help? please! i'm new in wz.editing

And i think its wz edit
 
Custom Title Activated
Loyal Member
Joined
Jan 18, 2010
Messages
3,109
Reaction score
1,139
The simple fix is just go to Effect.wz/BasicEff.img and modify the Quest lightbulb to a transparent PNG image. Alternatively, you can change your Quest.wz by disabling/removing all auto-start/auto-complete nodes from quests that cause it.
 
Upvote 0
Junior Spellweaver
Joined
Mar 19, 2016
Messages
100
Reaction score
0
The simple fix is just go to Effect.wz/BasicEff.img and modify the Quest lightbulb to a transparent PNG image. Alternatively, you can change your Quest.wz by disabling/removing all auto-start/auto-complete nodes from quests that cause it.
Thanks Eric, the first option work fine.
But can u explain a little bit more how i know how disable it? where is auto-start/complete nodes?
i dont see nothing about that
 
Upvote 0
Custom Title Activated
Loyal Member
Joined
Jan 18, 2010
Messages
3,109
Reaction score
1,139
Thanks Eric, the first option work fine.
But can u explain a little bit more how i know how disable it? where is auto-start/complete nodes?
i dont see nothing about that

In Quest.wz there is a QuestInfo.img node which contains all of the IDs of quests. In the specific quests that appear in the lightbulb, they are triggered by "autoStart", "autoComplete", and "autoPreComplete". The quests that contain these nodes will all have the value of 1 (true/enabled), and you would either make them 0 or remove the node completely. This used to be the method servers had used back in the day to remove the lightbulb, though I personally prefer making the lightbulb transparent.

Example quest:
Code:
<imgdir name="10051">
	<int name="area" value="50"/>
	[b]<int name="autoStart" value="1"/>
	<int name="autoPreComplete" value="1"/>
	<int name="autoComplete" value="1"/>[/b]
	<string name="name" value="Cassandra&apos;s Request"/>
	<string name="0" value="#p9010010# wants to talk to you... She&apos;s been busy these days teasing #p9000042#. What could she want?"/>
	<string name="1" value="#p9010010# says that #b#p9000042##k seems to have become involved in something strange again and asks that you help him. It&apos;s about taking care of an egg or something. In any case #p9010010# seems to care about #p9000042# after all..."/>
	<string name="2" value="#p9010010# says that #b#p9000042##k seems to have become involved in something strange again and asks that you help him. It&apos;s about taking care of an egg or something. In any case #p9010010# seems to care about #p9000042# after all..."/>
</imgdir>
 
Upvote 0
Junior Spellweaver
Joined
Mar 19, 2016
Messages
100
Reaction score
0
In Quest.wz there is a QuestInfo.img node which contains all of the IDs of quests. In the specific quests that appear in the lightbulb, they are triggered by "autoStart", "autoComplete", and "autoPreComplete". The quests that contain these nodes will all have the value of 1 (true/enabled), and you would either make them 0 or remove the node completely. This used to be the method servers had used back in the day to remove the lightbulb, though I personally prefer making the lightbulb transparent.

Example quest:
Code:
<imgdir name="10051">
    <int name="area" value="50"/>
    [B]<int name="autoStart" value="1"/>
    <int name="autoPreComplete" value="1"/>
    <int name="autoComplete" value="1"/>[/B]
    <string name="name" value="Cassandra&apos;s Request"/>
    <string name="0" value="#p9010010# wants to talk to you... She&apos;s been busy these days teasing #p9000042#. What could she want?"/>
    <string name="1" value="#p9010010# says that #b#p9000042##k seems to have become involved in something strange again and asks that you help him. It&apos;s about taking care of an egg or something. In any case #p9010010# seems to care about #p9000042# after all..."/>
    <string name="2" value="#p9010010# says that #b#p9000042##k seems to have become involved in something strange again and asks that you help him. It&apos;s about taking care of an egg or something. In any case #p9010010# seems to care about #p9000042# after all..."/>
</imgdir>
and about the nodes u talking about xml or .wz?
what i need change to 0? .wz(client-side) or in xml? (server side)
 
Upvote 0
Back
Top