Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. //Generate banner
  2. 'generate_banner' => array
  3. (
  4. /****************************************
  5.  
  6. font - 'arial', 'calibri', 'inconsolata', 'tahoma'
  7. color - in RGB array(x, x, x) you can check colors on https://www.w3schools.com/colors/colors_rgb.asp
  8. co-ordinates - array(size, rotation, x, y)
  9.  
  10. ****************************************/
  11.  
  12. 'enabled' => true,
  13. 'admins_online' => array
  14. (
  15. 'enabled' => true,
  16. 'admins_server_groups' => array(1177,979,1239,682,683,686,685,684), //admins server groups
  17. 'font' => 'arial',
  18. 'color' => array(255,255,255),
  19. 'co-ordinates' => array(30,0,170,115),
  20. ),
  21. 'clients_online' => array
  22. (
  23. 'enabled' => true,
  24. 'font' => 'arial',
  25. 'color' => array(255,255,255),
  26. 'co-ordinates' => array(30,0,830,115),
  27. ),
  28. 'record_online' => array
  29. (
  30. 'enabled' => true,
  31. 'font' => 'arial',
  32. 'color' => array(255,255,255),
  33. 'co-ordinates' => array(30,0,830,325),
  34. ),
  35. 'clock' => array
  36. (
  37. 'enabled' => true,
  38. 'font' => 'arial',
  39. 'color' => array(255,255,255),
  40. 'co-ordinates' => array(30,0,140,325),
  41. ),
  42. 'fc_admin' => array
  43. (
  44. 'enabled' => true,
  45. 'admins_server_groups' => array(), //grupy tu
  46. 'font' => 'arial', // czcionka
  47. 'color' => array(255,255,255), // kolorki
  48. 'co-ordinates' => array(30,0,170,115), // ustawiasz wielkosc, i polozenie
  49. ),
  50.  
  51. 'image_file' => 'include/cache/bg.png', //Must be png!
  52. 'target_image_file' => '/var/www/image.png', //Must be png!
  53. 'time_interval' => array('weeks' => 0,'days' => 0,'hours' => 0,'minutes' => 0,'seconds' => 30),
  54. 'data' => '1970-01-01 00:00:00', //Do not change
  55. ),
  56.  
  57. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement