Tease -- Talk to 1000 citizens while unarmored.
Vamp -- Talk to 10000 citizens while unarmored.
How to:
1) Zoom your camera into first person view
2) Stand directly in front of an npc and make sure its in the center of your screen.
3) Run script
Code:
WinWaitActive("Warhammer: Age of Reckoning, Copyright 2001-2008 Electronic Arts, Inc.") HotKeySet("{DEL}", "Start") HotKeySet("!{DEL}","Quit") TogglePause() func Start() HotKeySet("{DEL}") HotKeySet("{DEL}", "TogglePause") ToolTip('CP On!',0,0) While 1 = 1 WinActivate("Warhammer: Age of Reckoning, Copyright 2001-2008 Electronic Arts, Inc.") MouseClick("right", 638, 412, 1, 0) Sleep(500) WEnd EndFunc Func TogglePause() ToolTip('CP Off!',0,0) HotKeySet("{DEL}") HotKeySet("{DEL}", "Start") While 1 sleep(100) WEnd EndFunc func Quit() Exit
The Showoff -- Perform 100 abilities while unarmored.
The Showman -- Perform 1000 abilities while unarmored.
The Exhibitionist -- Perform 10000 abilities while unarmored.
Code:
WinWaitActive("Warhammer: Age of Reckoning, Copyright 2001-2008 Electronic Arts, Inc.") HotKeySet("{DEL}", "Start") HotKeySet("!{DEL}","Quit") TogglePause() func Start() HotKeySet("{DEL}") HotKeySet("{DEL}", "TogglePause") ToolTip('CP On!',0,0) While 1 = 1 WinActivate("Warhammer: Age of Reckoning, Copyright 2001-2008 Electronic Arts, Inc.") Send("{1}") Sleep(1600) WEnd EndFunc Func TogglePause() ToolTip('CP Off!',0,0) HotKeySet("{DEL}") HotKeySet("{DEL}", "Start") While 1 sleep(100) WEnd EndFunc func Quit() Exit EndFunc