←  Problemy z pluginami

AMXX.pl: Support AMX Mod X i SourceMod

»

Problem z pluginem banner na serwrze

  • +
  • -
GameOver1 - zdjęcie GameOver1 28.04.2014

#define PLUGIN  "Spectator Banner Ads"
#define VERSION "0.1.16"
#define AUTHOR  "iG_os"

#include <amxmodx>

#define SVC_DIRECTOR 51  // come from util.h
#define DRC_CMD_BANNER 9 // come from hltv.h

// sum of tga files
#define TGASUM 2

// tga of banners
new szTga[TGASUM][] ={
"gfx/friends.tga",
"gfx/amxx.tga"
}

new pCVAR_Tga
new g_SendOnce[33]

public plugin_precache()
{
   register_plugin(PLUGIN, VERSION, AUTHOR)
   register_logevent("joined_team", 3, "1=joined team")

   pCVAR_Tga = register_cvar("spec_banner_ads", "1")

   if (get_pcvar_num(pCVAR_Tga))
   {
      for (new i=0; i<TGASUM; i++)
         precache_generic(szTga[i])
   }
}


public client_putinserver(id)
{
   g_SendOnce[id] = true
}


public joined_team()
{
   new loguser[80], name[32]
   read_logargv(0, loguser, 79)
   parse_loguser(loguser, name, 31)
   new id = get_user_index(name)

   if ( get_pcvar_num(pCVAR_Tga) && g_SendOnce[id] && is_user_connected(id) )
   {
      // random select one tga
      new index = random_num( 0, TGASUM - 1)
      g_SendOnce[id] = false

      // send show tga command to client
      message_begin( MSG_ONE, SVC_DIRECTOR, _, id )
      write_byte( strlen( szTga[index]) + 2 ) // command length in bytes
      write_byte( DRC_CMD_BANNER )
      write_string( szTga[index] ) // banner file
      message_end()
   }
}


Witam mam taki problem z tym pluginem chcę aby banner był czytany z serwera www a nie jak to jest z serwera cs

 

Ma ktoś jakieś rozwiązania z góry dziękuję.

Odpowiedz

  • +
  • -
DarkGL - zdjęcie DarkGL 28.04.2014

Pliki muszą być na serwerze / fastdl

Odpowiedz

  • +
  • -
GameOver1 - zdjęcie GameOver1 28.04.2014

Mi chodzi o to żeby banner

 

Był wyświetlany na serwerze nie z tej lokalizacji 

 

"gfx/friends.tga",
"gfx/amxx.tga" 

 

 

Tylko żeby pobierało go np:

 

"www.twoj-adres.pl/gfx/friends.tga",
"www.twoj-adres.pl/gfx/amxx.tga"

 

W ten sposób żeby to tak wyglądało.

 

Pomożecie ?

Odpowiedz

  • +
  • -
ST3FAN - zdjęcie ST3FAN 28.04.2014

Możesz spróbować ale chyba nie pobierze Ci tego ze strony, łatwiej jest wrzucić na serwer. 

Odpowiedz