![]() |
|
ADD IP TO FAVORITES HUD MESSAGE !!!! PLUGIN - Printable Version +- eSportsKosova - Gaming Community (https://esportskosova.com) +-- Forum: HAPËSIRA E COUNTER-STRIKE (https://esportskosova.com/forum-7.html) +--- Forum: Counter-Strike 1.6 (https://esportskosova.com/forum-19.html) +---- Forum: Amx Mod X (https://esportskosova.com/forum-58.html) +----- Forum: AMX - Plugin's (https://esportskosova.com/forum-193.html) +----- Thread: ADD IP TO FAVORITES HUD MESSAGE !!!! PLUGIN (/thread-37226.html) |
ADD IP TO FAVORITES HUD MESSAGE !!!! PLUGIN - b1b1 - 05-15-2023 Pershendetje ![]() -Sot do tju prezantoj ni plugin qe e kom mar nga KGB-Hosting Forum !!! -Kit plugin veq kush deshiron ta marr un e kom nServer shum um pelqen ![]() -Playeri qe e shkrun /ip ose /ipall i del si nfoto me posht -Po ashtu del edhe automatikisht cdo 60 seconda Source : Code: /* All rights reserved.
Nijedan deo plugina ne sme biti kopiran bez odobrenja autora! */
#include <amxmodx>
#include <amxmisc>
#include <dhudmessage>
#define PLUGIN "ADD IP TO FAVORITES"
#define VERSION "1.0"
#define AUTHOR "twix"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_clcmd( "say /ip", "ClientCommand_Test" );
register_clcmd("say /ipall","_tasksvi",ADMIN_BAN);
}
public client_putinserver(id)
{
set_task(4.0, "ClientCommand_Test", id);
}
public ClientCommand_Test( client )
{
new server_ip [ 60 ]
get_user_ip ( 0, server_ip, sizeof ( server_ip ) - 1 )
set_dhudmessage( 250, 0, 0, -1.0, 0.1, 2, 950.0, 3.0, 0.25, 60.0 );
show_dhudmessage( client, "ADD IP TO FAVORITES: %s" , server_ip);
}
public _tasksvi () {
set_task(1.0,"pokaziSvima",0)
}
public pokaziSvima( client )
{
new server_ip [ 60 ]
get_user_ip ( 0, server_ip, sizeof ( server_ip ) - 1 )
set_dhudmessage( 120, 0, 0, -1.0, 0.1, 2, 950.0, 3.0, 0.3, 60.0 );
show_dhudmessage( client, "ADD IP TO FAVORITES: %s" , server_ip);
}Shikone FOTO se si duket : <!-- m --><a class="postlink" href="http://oi43.tinypic.com/286tkt4.jpg" onclick="window.open(this.href);return false;">http://oi43.tinypic.com/286tkt4.jpg</a><!-- m -->LINK PER DOWNLOAD : <!-- m --><a class="postlink" href="http://www.sendspace.com/file/3d9hvo" onclick="window.open(this.href);return false;">http://www.sendspace.com/file/3d9hvo</a><!-- m --> Re: ADD IP TO FAVORITES HUD MESSAGE !!!! PLUGIN - COLDMAN; - 05-16-2023 Nese kishe mujt me qit ni foto qysh e qet Re: ADD IP TO FAVORITES HUD MESSAGE !!!! PLUGIN - b1b1 - 05-16-2023 a spo sheh ti a Shikone FOTO se si duket : <!-- m --><a class="postlink" href="http://oi43.tinypic.com/286tkt4.jpg" onclick="window.open(this.href);return false;">http://oi43.tinypic.com/286tkt4.jpg</a><!-- m -->
Re: ADD IP TO FAVORITES HUD MESSAGE !!!! PLUGIN - COLDMAN; - 05-16-2023 mfal se se pasna pa Re: ADD IP TO FAVORITES HUD MESSAGE !!!! PLUGIN - KIQ - 05-17-2023 qysh me bo qdo 10 minuta, me dall aty nalt edhe me nejt 3 minuta a ka mundsi ? Re: ADD IP TO FAVORITES HUD MESSAGE !!!! PLUGIN - b1b1 - 05-17-2023 sbon bir ashtu
Re: ADD IP TO FAVORITES HUD MESSAGE !!!! PLUGIN - KIQ - 05-17-2023 Aj sma ka error ky eshte pa error bon 100 % e testumee.. Code: /*
set_hudmessage(255, 255, 255, 0.1, 0.25, 0, 6.0, 5.0)
show_hudmessage
*/
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "ADD IP TO FAVORITES"
#define VERSION "1.0"
#define AUTHOR "twix"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_clcmd( "say /ip", "ClientCommand_Test" );
register_clcmd("say /ipall","_tasksvi",ADMIN_BAN);
}
public client_putinserver(id)
{
set_task(4.0, "ClientCommand_Test", id);
}
public ClientCommand_Test( client )
{
new server_ip [ 60 ]
get_user_ip ( 0, server_ip, sizeof ( server_ip ) - 1 )
set_hudmessage( 250, 0, 0, -1.0, 0.1, 2, 950.0, 3.0, 0.25, 60.0 );
show_hudmessage( client, "ADD IP TO FAVORITES: %s" , server_ip);
}
public _tasksvi () {
set_task(1.0,"pokaziSvima",0)
}
public pokaziSvima( client )
{
new server_ip [ 60 ]
get_user_ip ( 0, server_ip, sizeof ( server_ip ) - 1 )
set_hudmessage( 120, 0, 0, -1.0, 0.1, 2, 950.0, 3.0, 0.3, 60.0 );
show_hudmessage( client, "ADD IP TO FAVORITES: %s" , server_ip);
}Re: ADD IP TO FAVORITES HUD MESSAGE !!!! PLUGIN - jaaki - 05-25-2023 bohet bohet
|