Akuba

Example Castlemario

Dec 19th, 2015
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.59 KB | None | 0 0
  1. #include <sourcemod>
  2. #include <freak_fortress_2>
  3. #include <freak_fortress_2_subplugin>
  4.  
  5. #define PLUGIN_VERSION "1.0.0"
  6.  
  7. public Plugin:myinfo = {
  8.     name = "Example Plugin",
  9.     author = "Akuba",
  10.     description = "Example for Castlemario",
  11.     version = PLUGIN_VERSION
  12. };
  13.  
  14. public void OnPluginStart()
  15. {
  16.        
  17. }
  18.  
  19.  
  20. public Action FF2_OnAbility2(boss, const String:plugin_name[], const String:ability_name[], status)
  21. {
  22.     if (!strcmp(ability_name, "rage_gravity", true))
  23.     {
  24.         Rage_Gravity();
  25.     }
  26.     return Plugin_Continue;
  27. }
  28.  
  29. Rage_Gravity()
  30. {
  31.     PrintCenterTextAll("Do you want to have a bad time?");
  32. }
Advertisement