Difference between revisions of "P return guild"

From Unofficial QEdit Wiki Guide
Jump to: navigation, search
 
Line 9: Line 9:
 
==Example==
 
==Example==
 
  <span style='font-size:12px;font-family:courier'>
 
  <span style='font-size:12px;font-family:courier'>
  <span style='color:blue'>100:    </span><span style='color:green'>window_msg </span>Mission: FAILED  
+
  <span style='color:blue'>100:    </span><span style='color:green'>window_msg </span>'Mission: FAILED'
  <span style='color:green'>        sync_register R255, 00000001 </span><span style='color:orange'>//Set reserved register for quest failed to true for all players</span>
+
  <span style='color:green'>        sync_register</span> R255, 00000001 <span style='color:orange'>//Set reserved register for quest failed to true for all players</span>
 
  <span style='color:green'>        p_return_guild </span><span style='color:orange'>//Return players to guild counter</span>
 
  <span style='color:green'>        p_return_guild </span><span style='color:orange'>//Return players to guild counter</span>
 
  <span style='color:green'>        ret </span>
 
  <span style='color:green'>        ret </span>

Revision as of 12:01, 12 April 2011

Syntax

Syntax: p_return_guild

  • None

Use

Used to return players to the guild counter. Usually used if a quest is failed.

Example


100:     window_msg 'Mission: FAILED'
         sync_register R255, 00000001 //Set reserved register for quest failed to true for all players
         p_return_guild //Return players to guild counter
         ret 

Also see

List of OP Codes used in example.