Jump to content

[PROBLEM]Quest text


Go to solution Solved by alberto2010,

Recommended Posts

  • Solution

i don't like to help romanians but .. just install this:

quest fix_bug_string begin
	state start begin
		when login begin
			setskin(NOWINDOW)
			say_title(" ")
			return
		end
	end
end

and if you have quests like this:

quest give_basic_weapon begin
	state start begin
		when login with pc.get_level() >= 1 begin
			say_title("text")
			say("text")
			say("text")
			say("text")
			say("text")
			say("text")
			pc.give_item2(x,y)
			set_state(endcall)
		end
	end
	state endcall begin
	end
end

you have to rewrite them like this exemple:

quest give_basic_weapon begin
	state start begin
		when login with pc.get_level() >= 1 begin
			timer("give_basic_weapon", 2)
		end
		when give_basic_weapon.timer begin
			say_title("text")
			say("text")
			say("text")
			say("text")
			say("text")
			say("text")
			pc.give_item2(x,y)
			set_state(endcall)
		end
	end
	state endcall begin
	end
end

 

  • Love 1
Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.