Advertisement
milutinke

Вип опис за Кристијана

Jun 25th, 2020
1,717
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 1.66 KB | None | 0 0
  1. public VipInfo( iPlayer ) {
  2.     new szMotd[ 2048 ];
  3.     new iLength = 0;
  4.     iLength = formatex( szMotd, charsmax( szMotd ), "<html><head><style type=^"text/css^">body{color:#3399ff;margin:5px;background:black;font-family:Arial, Helwetica, Sans-Serif;font-size:17px;font-weight:bold;} .v{color:lime;}</style></head><body><h1>Vip info:</h1><ul>" );
  5.    
  6.     if( g_iSettingsBhop )
  7.         iLength += formatex( szMotd[ iLength ], charsmax( szMotd ) - iLength, "<li>%L</li>", LANG_PLAYER, "ML_VIP_BHOP" );
  8.        
  9.     if( g_iSettingsJumps )
  10.         iLength += formatex( szMotd[ iLength ], charsmax( szMotd ) - iLength, "<li>%L</li>", LANG_PLAYER, "ML_VIP_EXTRA_JUMPS", g_iSettingsJumps );
  11.        
  12.     if( g_iSettingsHeResistance )
  13.         iLength += formatex( szMotd[ iLength ], charsmax( szMotd ) - iLength, "<li>%L</li>", LANG_PLAYER, "ML_VIP_HE_RESISTANCE" );
  14.        
  15.     if( g_iSettingsFallDamageDisabled )
  16.         iLength += formatex( szMotd[ iLength ], charsmax( szMotd ) - iLength, "<li>%L</li>", LANG_PLAYER, "ML_VIP_FALL_DAMAGE_DISABLED" );
  17.        
  18.     iLength += formatex( szMotd[ iLength ], charsmax( szMotd ) - iLength, "<li>%L</li>", LANG_PLAYER, "ML_VIP_KILL_XP", g_iSettingsXpForKill );
  19.     iLength += formatex( szMotd[ iLength ], charsmax( szMotd ) - iLength, "<li>%L</li>", LANG_PLAYER, "ML_VIP_KILL_GOLD", g_iSettingsGoldForKill );
  20.     iLength += formatex( szMotd[ iLength ], charsmax( szMotd ) - iLength, "<li>%L</li>", LANG_PLAYER, "ML_VIP_C4_XP", g_iSettingsC4XP );
  21.     iLength += formatex( szMotd[ iLength ], charsmax( szMotd ) - iLength, "<li>%L</li>", LANG_PLAYER, "ML_VIP_C4_GOLD", g_iSettingsC4Gold );
  22.     iLength += formatex( szMotd[ iLength ], charsmax( szMotd ) - iLength, "</ul>" );
  23.    
  24.     show_motd( iPlayer, szMotd, "VIP INFO" );
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement