Advertisement
Guest User

Untitled

a guest
Nov 21st, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. char PluginName[64];
  2.  
  3. methodmap Errors {
  4.  
  5. public static void SetPluginName(char[] name) {
  6. strcopy(PluginName, sizeof(PluginName), name);
  7. }
  8. public static void ThrowCriticalError(int errorCode, char[] error) {
  9. LogError("[Error] Wystąpił błąd podczas wykonywania wtyczki %s [#%i]. Kod błędu: %s.", PluginName, errorCode, error);
  10. SetFailState("Wystąpił błąd w działaniu aplikacji [#%i]. Szczegóły znajdziesz w logach błędów.", errorCode);
  11. }
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement