• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

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