Advertisement
Hauke

WBB_Connect 2.0 - Callbacks

May 18th, 2012
438
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 2.78 KB | None | 0 0
  1. // WBB_Connect 2.0 callbacks by Hauke Marquardt alias |-|auke - 19.05.2012
  2. /*
  3. License:
  4.         This code is free: you can redistribute it and/or modify
  5.         it under the terms of the GNU General Public License as published by
  6.         the Free Software Foundation, either version 3 of the License, or
  7.         (at your option) any later version.
  8.  
  9.         This code is distributed in the hope that it will be useful,
  10.         but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.         GNU General Public License for more details.
  13.  
  14.         You should have received a copy of the GNU General Public License
  15.         along with this program.  If not, see <http://www.gnu.org/licenses/>.
  16.         Youre not allowed to copy any code from this, into your code without
  17.         naming authors name in credits!
  18. */
  19. public WBB_GotPostUser ( Index , Username[ ] ) {
  20.     return 1;
  21. }
  22.  
  23. public WBB_GotThreadStarter ( Index , Username[ ] ) {
  24.     return 1;
  25. }
  26.  
  27. public WBB_GotUserActivationCode ( Index , ActivationCode[ ] ) {
  28.     return 1;
  29. }
  30.  
  31. public WBB_GotUserActivationState ( Index , State ) {
  32.     return 1;
  33. }
  34.  
  35. public WBB_GotUserAge ( Index , Age ) {
  36.     return 1;
  37. }
  38.  
  39. public WBB_GotUserFriendState ( Index , State ) {
  40.     return 1;
  41. }
  42.  
  43. public WBB_GotUserGroupState ( Index , State ) {
  44.     return 1;
  45. }
  46.  
  47. public WBB_GotUserID ( Index , UserID ) {
  48.     return 1;
  49. }
  50.  
  51. public WBB_GotUserOnlineState ( Index , State ) {
  52.     return 1;
  53. }
  54.  
  55. public WBB_GotUserPasswordCheckState ( Index , State ) {
  56.     return 1;
  57. }
  58.  
  59. public WBB_GotUserTitle ( Index , Title[ ] ) {
  60.     return 1;
  61. }
  62.  
  63. public WBB_GotUserValidState ( Index , State ) {
  64.     return 1;
  65. }
  66.  
  67. public WBB_OnInitialize ( State ) {
  68.     return 1;
  69. }
  70.  
  71. public WBB_PostAdded ( Index ) {
  72.     return 1;
  73. }
  74.  
  75. public WBB_PostDeleted ( Index ) {
  76.     return 1;
  77. }
  78.  
  79. public WBB_PostEdited ( Index ) {
  80.     return 1;
  81. }
  82.  
  83. public WBB_PostTrashed ( Index ) {
  84.     return 1;
  85. }
  86.  
  87. public WBB_ThreadAdded ( Index , ThreadID ) {
  88.     return 1;
  89. }
  90.  
  91. public WBB_ThreadDeleted ( Index ) {
  92.     return 1;
  93. }
  94.  
  95. public WBB_ThreadSticked ( Index ) {
  96.     return 1;
  97. }
  98.  
  99. public WBB_ThreadUnsticked ( Index ) {
  100.     return 1;
  101. }
  102.  
  103. public WBB_UserAdded ( Index ) {
  104.     return 1;
  105. }
  106.  
  107. public WBB_UserAvatarDisabled ( Index ) {
  108.     return 1;
  109. }
  110.  
  111. public WBB_UserAvatarEnabled ( Index ) {
  112.     return 1;
  113. }
  114.  
  115. public WBB_UserBanned ( Index ) {
  116.     return 1;
  117. }
  118.  
  119. public WBB_UserDisabled ( Index ) {
  120.     return 1;
  121. }
  122.  
  123. public WBB_UserEnabled ( Index ) {
  124.     return 1;
  125. }
  126.  
  127. public WBB_UserRemovedFromGroup ( Index ) {
  128.     return 1;
  129. }
  130.  
  131. public WBB_UserSettedToGroup ( Index ) {
  132.     return 1;
  133. }
  134.  
  135. public WBB_UserSignaturDisabled ( Index ) {
  136.     return 1;
  137. }
  138.  
  139. public WBB_UserSignaturEnabled ( Index ) {
  140.     return 1;
  141. }
  142.  
  143. public WBB_UserUnbanned ( Index ) {
  144.     return 1;
  145. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement