Jump to content

Quest mensaje global


Robert

Recommended Posts

No creo que sea muy practico pero lo pongo por si alguien lo quiere:

 

Nota de KeKo: La quest la tuve que arreglar yo que estaba fatal, iba a dar error -.- revisa las cosas que posteas que no son tuyas

 

quest global begin
   state start begin
	  when login begin
		 set_state(info)
	  end
   end
  
   state info begin
	  when info or button begin
		 say_reward("Hola "..pc.get_name()..")
		 say("Si quieres mandar un mensaje te costara 10kk")
		 say("Quieres mandarlo?")
		 local text = select("Si","No")
		 if text = 1 then
			if pc.get_gold() < 10000000 then
			   say("No tienes suficiente dinero")
			   return
			   end
			   say("Escribe el mensaje")
			   local notice_text = input()
			   notice_all(""..pc.get_name()..", level "..pc.get_level().." quiere decir lo siguiente:")
			   notice_all("..notice_text)
			   pc.changegold(-10000000)
		   end
	  end
   end
end
Link to comment
Share on other sites

esta maso quedaria mejor en una npc:

quest global begin
   state start begin
when 9001.chat"anunciar" whth pc.get_level() >90 begin
				 say_reward("Hola "..pc.get_name()..")
				 say("Si quieres mandar un mensaje te costara 10kk")
				 say("Quieres mandarlo?")
				 local text = select("Si","No")
				 if text = 1 then
						if pc.get_gold() < 10000000 then
						   say("No tienes suficiente dinero")
						   return
						   end
						   say("Escribe el mensaje")
						   local notice_text = input()
						   notice_all(""..pc.get_name()..", level "..pc.get_level().." quiere decir lo siguiente:")
						   notice_all("..notice_text)
						   pc.changegold(-10000000)
				   end
	 if text = 2 then
say("okas bye")
   end
   end
end
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...