Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 8th, 2012  |  syntax: None  |  size: 0.54 KB  |  hits: 11  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. #include "wrappers_h"
  2.  
  3. #include "plt_genpt_app_leliana"
  4.  
  5. void main() {
  6.     if(WR_GetPlotFlag(PLT_GENPT_APP_LELIANA, APP_LELIANA_CHANGED)) {
  7.         WR_SetPlotFlag(PLT_GENPT_APP_LELIANA, APP_LELIANA_CHANGED, FALSE);
  8.         DisplayFloatyMessage(GetMainControlled(), "Leliana's hardened flag disabled", FLOATY_MESSAGE, 0xFFFFFF, 2.0);
  9.     } else {
  10.         WR_SetPlotFlag(PLT_GENPT_APP_LELIANA, APP_LELIANA_CHANGED, TRUE);
  11.         DisplayFloatyMessage(GetMainControlled(), "Leliana's hardened flag enabled", FLOATY_MESSAGE, 0xFFFFFF, 2.0);
  12.     }
  13. }