Raised This Month: $51 Target: $400
 12% 

[req] wOw see this once.!


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
chintu
Senior Member
Join Date: Jul 2013
Old 04-13-2015 , 03:45   [req] wOw see this once.!
Reply With Quote #1

Wer can i get this plugin ??

https://www.youtube.com/watch?v=kLoPu3Zb9ks
chintu is offline
Krtola
Veteran Member
Join Date: Oct 2013
Location: Serbia
Old 04-13-2015 , 04:32   Re: [req] wOw see this once.!
Reply With Quote #2

Try there
Attached Images
File Type: jpg vale.jpg (75.2 KB, 144 views)
Krtola is offline
Send a message via Skype™ to Krtola
5aloOod
Senior Member
Join Date: Jun 2013
Location: hell
Old 04-13-2015 , 05:33   Re: [req] wOw see this once.!
Reply With Quote #3

Quote:
Originally Posted by Krtola View Post
Try there
he will not see it
__________________
اَشْهَدُ اَنْ لَّآ اِلٰهَ اِلَّا اللہُ وَحْدَه لَا شَرِيْكَ لَه وَ اَشْهَدُ اَنَّ مُحَمَّدًا عَبْدُه وَرَسُوْلُه
5aloOod is offline
chintu
Senior Member
Join Date: Jul 2013
Old 04-13-2015 , 05:55   Re: [req] wOw see this once.!
Reply With Quote #4

Quote:
Originally Posted by Krtola View Post
Try there
[IMG]http://s9.************/ig8ntz60f/vale.png[/IMG]
chintu is offline
Krtola
Veteran Member
Join Date: Oct 2013
Location: Serbia
Old 04-13-2015 , 06:18   Re: [req] wOw see this once.!
Reply With Quote #5

PHP Code:
#include <amxmodx>
#include <amxmisc>
#include <fun>
#include <cstrike>
#include <engine>
#include <fakemeta>
#include <dhudmessage>

#define PLUGIN_NAME        "Torneo VIP 2c2 - FINAL"
#define PLUGIN_VERSION    "v1.0.0"
#define PLUGIN_AUTHOR    "Kiske"

const UNIT_SECOND = (<< 12);

new 
g_message_hud;
new 
g_unique;
new 
g_count;
new 
g_count_screens;
new 
g_count_final;
new 
g_finish;
new 
g_maxplayers;

new 
g_message_screenshake;
new 
g_message_screenfade;

public 
plugin_precache()
{
    
precache_sound("t_2c2/tcs_one.wav");
    
precache_sound("t_2c2/tcs_two.wav");
    
precache_sound("t_2c2/tcs_three.wav");
    
precache_sound("t_2c2/tcs_four.wav");
    
precache_sound("t_2c2/tcs_five.wav");
    
    
precache_sound("weapons/c4_explode1.wav");
    
    
precache_generic("sound/t_2c2/px2.mp3");
}

public 
plugin_init()
{
    
register_plugin(PLUGIN_NAMEPLUGIN_VERSIONPLUGIN_AUTHOR);
    
    
register_concmd("amx_rock_final""concmd_RockFinal");
    
    
g_message_screenshake get_user_msgid("ScreenShake");
    
g_message_screenfade get_user_msgid("ScreenFade");
    
    
g_message_hud CreateHudSyncObj();
    
    
g_maxplayers get_maxplayers();
}

public 
concmd_RockFinal(idlevelcid)
{
    if(!
cmd_access(idADMIN_LEVEL_Acid1))
        return 
PLUGIN_HANDLED;
    
    if(
g_unique)
    {
        
console_print(id"Solo se puede usar este comando una vez por mapa!");
        return 
PLUGIN_HANDLED;
    }
    
    
g_unique 1
    
    g_count 
10;
    
set_task(2.0"fn_Vale");
    
    new 
i;
    for(
1<= g_maxplayers; ++i)
    {
        if(!
is_user_connected(i))
            continue;
        
        
cs_set_user_money(i0);
        
        if(!
is_user_alive(i))
            continue;
        
        
strip_user_weapons(i);
    }
    
    return 
PLUGIN_HANDLED;
}

public 
fn_Vale()
{
    new 
sMsg[64];
    
    if(
g_count 5)
        
formatex(sMsgcharsmax(sMsg), "El juego comienza en %d segundos"g_count);
    else
    {
        new 
sSound[64];
        
        switch(
g_count)
        {
            case 
5:
            {
                
formatex(sSoundcharsmax(sSound), "t_2c2/tcs_five.wav");
                
                new 
i;
                for(
1<= g_maxplayers; ++i)
                {
                    if(!
is_user_connected(i))
                        continue;
                    
                    
message_begin(MSG_ONE_UNRELIABLEg_message_screenshake_i);
                    
write_short(UNIT_SECOND 14);
                    
write_short(UNIT_SECOND 9);
                    
write_short(UNIT_SECOND 14);
                    
message_end();
                }
                
                for(
1<= g_maxplayers; ++i)
                {
                    if(!
is_user_connected(i))
                        continue;
                    
                    
ClearSyncHud(ig_message_hud);
                }
                
                
set_lights("i");
            }
            case 
4:
            {
                
formatex(sSoundcharsmax(sSound), "t_2c2/tcs_four.wav");
                
set_lights("g");
            }
            case 
3:
            {
                
formatex(sSoundcharsmax(sSound), "t_2c2/tcs_three.wav");
                
set_lights("e");
            }
            case 
2:
            {
                
formatex(sSoundcharsmax(sSound), "t_2c2/tcs_two.wav");
                
set_lights("c");
            }
            case 
1:
            {
                
formatex(sSoundcharsmax(sSound), "t_2c2/tcs_one.wav");
                
set_lights("a");
            }
            case 
0:
            {    
                
g_count 1;
                
                
set_task(3.0"fn_PlayMusic");
                
                return;
            }
        }
        
        
client_cmd(0"spk ^"%s^""sSound);
        
        
set_dhudmessage(2552550, -1.00.300.00.30.30.3);
        
show_dhudmessage(0"%d"g_count);
    }
    
    if(
g_count 5)
    {
        
set_hudmessage(2552550, -1.00.300.03.02.01.0, -1);
        
ShowSyncHudMsg(0g_message_hud"%s"sMsg);
    }
    
    --
g_count;
    
    
set_task(1.0"fn_Vale");
}

public 
fn_PlayMusic()
{
    if(
g_count == 5)
    {
        ++
g_count;
        
        
set_task(0.3"fn_PlayMusic");
        
        return;
    }
    
    new 
sSound[64];
    
    switch(
g_count)
    {
        case 
1formatex(sSoundcharsmax(sSound), "t_2c2/tcs_one.wav");
        case 
2formatex(sSoundcharsmax(sSound), "t_2c2/tcs_two.wav");
        case 
3formatex(sSoundcharsmax(sSound), "t_2c2/tcs_three.wav");
        case 
4formatex(sSoundcharsmax(sSound), "t_2c2/tcs_four.wav");
        case 
6:
        {
            
client_cmd(0"MP3Volume 2.0");
            
client_cmd(0"mp3 play ^"sound/t_2c2/px2.mp3^"");
            
            new 
i;
            for(
1<= g_maxplayers; ++i)
            {
                if(!
is_user_connected(i))
                    continue;
                
                
message_begin(MSG_ONE_UNRELIABLEg_message_screenshake_i);
                
write_short(UNIT_SECOND 28);
                
write_short(UNIT_SECOND 18);
                
write_short(UNIT_SECOND 28);
                
message_end();
            }
            
            
g_count 1;
            
g_count_final 1;
            
            
set_task(0.1"fn_ChangeRender");
            
set_task(5.0"fn_ChangeNumber");
            
set_task(15.0"fn_ChangeScreens");
            
set_task(30.1"fn_Finish");
            
            return;
        }
    }
    
    
client_cmd(0"spk ^"%s^""sSound);
    
    ++
g_count;
    
    
set_task(0.3"fn_PlayMusic");
}

public 
fn_ChangeRender()
{
    if(
g_count == 60 || g_finish)
        return;

    static 
i;
    static 
Float:vecOrigin[3];
    
    for(
1<= g_maxplayers; ++i)
    {
        if((
g_count 2) == 0)
        {
            if(!
is_user_connected(i))
                continue;
            
            
message_begin(MSG_ONE_UNRELIABLEg_message_screenshake_i);
            
write_short(UNIT_SECOND 9);
            
write_short(UNIT_SECOND 6);
            
write_short(UNIT_SECOND 9);
            
message_end();
            
            if(!
is_user_alive(i))
                continue;
            
            
entity_get_vector(iEV_VEC_originvecOrigin);
            
            
engfunc(EngFunc_MessageBeginMSG_PVSSVC_TEMPENTITYvecOrigin0);
            
write_byte(TE_DLIGHT);
            
engfunc(EngFunc_WriteCoordvecOrigin[0]);
            
engfunc(EngFunc_WriteCoordvecOrigin[1]);
            
engfunc(EngFunc_WriteCoordvecOrigin[2]);
            
write_byte(40);
            
write_byte(random_num(50250));
            
write_byte(random_num(50250));
            
write_byte(random_num(50250));
            
write_byte(50);
            
write_byte(10);
            
message_end();
        }
        
        if(!
is_user_alive(i))
            continue;
        
        
set_user_rendering(ikRenderFxGlowShellrandom_num(150250), random_num(150250), random_num(150250), kRenderNormal25);
    }
    
    ++
g_count;
    
    
set_task(0.5"fn_ChangeRender");
}

public 
fn_ChangeScreens()
{
    if(
g_count_screens == 75 || g_finish)
        return;
    
    static 
i;
    if((
g_count_screens 15) == 0)
    {
        for(
1<= g_maxplayers; ++i)
        {
            if(!
is_user_connected(i))
                continue;
            
            
message_begin(MSG_ONE_UNRELIABLEg_message_screenshake_i);
            
write_short(UNIT_SECOND 28);
            
write_short(UNIT_SECOND 18);
            
write_short(UNIT_SECOND 28);
            
message_end();
        }
    }
    
    for(
1<= g_maxplayers; ++i)
    {
        if(!
is_user_connected(i))
            continue;
        
        
message_begin(MSG_ONE_UNRELIABLEg_message_screenfade_i)
        
write_short(UNIT_SECOND*4);
        
write_short(UNIT_SECOND*4);
        
write_short(0x0000);
        
write_byte(random_num(100250));
        
write_byte(random_num(100250));
        
write_byte(random_num(100250));
        
write_byte(200);
        
message_end();
    }
    
    ++
g_count_screens;
    
    
set_task(0.2"fn_ChangeScreens");
}

public 
fn_Finish()
{
    
g_finish 1;
    
    
client_cmd(0"mp3 stop; stopsound");
    
    
client_cmd(0"spk weapons/c4_explode1.wav");
    
client_cmd(0"spk weapons/c4_explode1.wav");
    
    
set_lights("");
    
    new 
i;
    for(
1<= g_maxplayers; ++i)
    {
        if(!
is_user_connected(i))
            continue;
        
        
message_begin(MSG_ONE_UNRELIABLEg_message_screenfade_i)
        
write_short(UNIT_SECOND*4);
        
write_short(UNIT_SECOND*4);
        
write_short(0x0000);
        
write_byte(255);
        
write_byte(255);
        
write_byte(25);
        
write_byte(255);
        
message_end();
        
        
set_user_rendering(i);
    }
    
    
set_task(0.3"fn_R");
    
set_task(2.0"fn_Restart3");
}

public 
fn_R()
    
server_cmd("sv_restart 1")

public 
fn_Restart3()
{
    
client_print(0print_chat"V4L3 V4L3 V4L3 V4L3 V4L3 V4L3 V4L3 V4L3");
    
client_print(0print_chat"VaLe VaLe VaLe VaLe VaLe VaLe VaLe VaLe");
    
client_print(0print_chat"vAlE vAlE vAlE vAlE vAlE vAlE vAlE vAlE");
    
client_print(0print_chat"VALE VALE VALE VALE VALE VALE VALE VALE");
}

public 
fn_ChangeNumber()
{
    if(
g_count_final == 6)
        return;
    
    new 
sSound[64];
    
    switch(
g_count_final)
    {
        case 
1formatex(sSoundcharsmax(sSound), "t_2c2/tcs_five.wav");
        case 
2formatex(sSoundcharsmax(sSound), "t_2c2/tcs_four.wav");
        case 
3formatex(sSoundcharsmax(sSound), "t_2c2/tcs_three.wav");
        case 
4formatex(sSoundcharsmax(sSound), "t_2c2/tcs_two.wav");
        case 
5formatex(sSoundcharsmax(sSound), "t_2c2/tcs_one.wav");
    }
    
    
client_cmd(0"spk ^"%s^""sSound);
    
    ++
g_count_final;
    
    
set_task(5.0"fn_ChangeNumber");

Krtola is offline
Send a message via Skype™ to Krtola
chintu
Senior Member
Join Date: Jul 2013
Old 04-13-2015 , 06:40   Re: [req] wOw see this once.!
Reply With Quote #6

Quote:
Originally Posted by Krtola View Post
PHP Code:
#include <amxmodx>
#include <amxmisc>
#include <fun>
#include <cstrike>
#include <engine>
#include <fakemeta>
#include <dhudmessage>

#define PLUGIN_NAME        "Torneo VIP 2c2 - FINAL"
#define PLUGIN_VERSION    "v1.0.0"
#define PLUGIN_AUTHOR    "Kiske"

const UNIT_SECOND = (<< 12);

new 
g_message_hud;
new 
g_unique;
new 
g_count;
new 
g_count_screens;
new 
g_count_final;
new 
g_finish;
new 
g_maxplayers;

new 
g_message_screenshake;
new 
g_message_screenfade;

public 
plugin_precache()
{
    
precache_sound("t_2c2/tcs_one.wav");
    
precache_sound("t_2c2/tcs_two.wav");
    
precache_sound("t_2c2/tcs_three.wav");
    
precache_sound("t_2c2/tcs_four.wav");
    
precache_sound("t_2c2/tcs_five.wav");
    
    
precache_sound("weapons/c4_explode1.wav");
    
    
precache_generic("sound/t_2c2/px2.mp3");
}

public 
plugin_init()
{
    
register_plugin(PLUGIN_NAMEPLUGIN_VERSIONPLUGIN_AUTHOR);
    
    
register_concmd("amx_rock_final""concmd_RockFinal");
    
    
g_message_screenshake get_user_msgid("ScreenShake");
    
g_message_screenfade get_user_msgid("ScreenFade");
    
    
g_message_hud CreateHudSyncObj();
    
    
g_maxplayers get_maxplayers();
}

public 
concmd_RockFinal(idlevelcid)
{
    if(!
cmd_access(idADMIN_LEVEL_Acid1))
        return 
PLUGIN_HANDLED;
    
    if(
g_unique)
    {
        
console_print(id"Solo se puede usar este comando una vez por mapa!");
        return 
PLUGIN_HANDLED;
    }
    
    
g_unique 1
    
    g_count 
10;
    
set_task(2.0"fn_Vale");
    
    new 
i;
    for(
1<= g_maxplayers; ++i)
    {
        if(!
is_user_connected(i))
            continue;
        
        
cs_set_user_money(i0);
        
        if(!
is_user_alive(i))
            continue;
        
        
strip_user_weapons(i);
    }
    
    return 
PLUGIN_HANDLED;
}

public 
fn_Vale()
{
    new 
sMsg[64];
    
    if(
g_count 5)
        
formatex(sMsgcharsmax(sMsg), "El juego comienza en %d segundos"g_count);
    else
    {
        new 
sSound[64];
        
        switch(
g_count)
        {
            case 
5:
            {
                
formatex(sSoundcharsmax(sSound), "t_2c2/tcs_five.wav");
                
                new 
i;
                for(
1<= g_maxplayers; ++i)
                {
                    if(!
is_user_connected(i))
                        continue;
                    
                    
message_begin(MSG_ONE_UNRELIABLEg_message_screenshake_i);
                    
write_short(UNIT_SECOND 14);
                    
write_short(UNIT_SECOND 9);
                    
write_short(UNIT_SECOND 14);
                    
message_end();
                }
                
                for(
1<= g_maxplayers; ++i)
                {
                    if(!
is_user_connected(i))
                        continue;
                    
                    
ClearSyncHud(ig_message_hud);
                }
                
                
set_lights("i");
            }
            case 
4:
            {
                
formatex(sSoundcharsmax(sSound), "t_2c2/tcs_four.wav");
                
set_lights("g");
            }
            case 
3:
            {
                
formatex(sSoundcharsmax(sSound), "t_2c2/tcs_three.wav");
                
set_lights("e");
            }
            case 
2:
            {
                
formatex(sSoundcharsmax(sSound), "t_2c2/tcs_two.wav");
                
set_lights("c");
            }
            case 
1:
            {
                
formatex(sSoundcharsmax(sSound), "t_2c2/tcs_one.wav");
                
set_lights("a");
            }
            case 
0:
            {    
                
g_count 1;
                
                
set_task(3.0"fn_PlayMusic");
                
                return;
            }
        }
        
        
client_cmd(0"spk ^"%s^""sSound);
        
        
set_dhudmessage(2552550, -1.00.300.00.30.30.3);
        
show_dhudmessage(0"%d"g_count);
    }
    
    if(
g_count 5)
    {
        
set_hudmessage(2552550, -1.00.300.03.02.01.0, -1);
        
ShowSyncHudMsg(0g_message_hud"%s"sMsg);
    }
    
    --
g_count;
    
    
set_task(1.0"fn_Vale");
}

public 
fn_PlayMusic()
{
    if(
g_count == 5)
    {
        ++
g_count;
        
        
set_task(0.3"fn_PlayMusic");
        
        return;
    }
    
    new 
sSound[64];
    
    switch(
g_count)
    {
        case 
1formatex(sSoundcharsmax(sSound), "t_2c2/tcs_one.wav");
        case 
2formatex(sSoundcharsmax(sSound), "t_2c2/tcs_two.wav");
        case 
3formatex(sSoundcharsmax(sSound), "t_2c2/tcs_three.wav");
        case 
4formatex(sSoundcharsmax(sSound), "t_2c2/tcs_four.wav");
        case 
6:
        {
            
client_cmd(0"MP3Volume 2.0");
            
client_cmd(0"mp3 play ^"sound/t_2c2/px2.mp3^"");
            
            new 
i;
            for(
1<= g_maxplayers; ++i)
            {
                if(!
is_user_connected(i))
                    continue;
                
                
message_begin(MSG_ONE_UNRELIABLEg_message_screenshake_i);
                
write_short(UNIT_SECOND 28);
                
write_short(UNIT_SECOND 18);
                
write_short(UNIT_SECOND 28);
                
message_end();
            }
            
            
g_count 1;
            
g_count_final 1;
            
            
set_task(0.1"fn_ChangeRender");
            
set_task(5.0"fn_ChangeNumber");
            
set_task(15.0"fn_ChangeScreens");
            
set_task(30.1"fn_Finish");
            
            return;
        }
    }
    
    
client_cmd(0"spk ^"%s^""sSound);
    
    ++
g_count;
    
    
set_task(0.3"fn_PlayMusic");
}

public 
fn_ChangeRender()
{
    if(
g_count == 60 || g_finish)
        return;

    static 
i;
    static 
Float:vecOrigin[3];
    
    for(
1<= g_maxplayers; ++i)
    {
        if((
g_count 2) == 0)
        {
            if(!
is_user_connected(i))
                continue;
            
            
message_begin(MSG_ONE_UNRELIABLEg_message_screenshake_i);
            
write_short(UNIT_SECOND 9);
            
write_short(UNIT_SECOND 6);
            
write_short(UNIT_SECOND 9);
            
message_end();
            
            if(!
is_user_alive(i))
                continue;
            
            
entity_get_vector(iEV_VEC_originvecOrigin);
            
            
engfunc(EngFunc_MessageBeginMSG_PVSSVC_TEMPENTITYvecOrigin0);
            
write_byte(TE_DLIGHT);
            
engfunc(EngFunc_WriteCoordvecOrigin[0]);
            
engfunc(EngFunc_WriteCoordvecOrigin[1]);
            
engfunc(EngFunc_WriteCoordvecOrigin[2]);
            
write_byte(40);
            
write_byte(random_num(50250));
            
write_byte(random_num(50250));
            
write_byte(random_num(50250));
            
write_byte(50);
            
write_byte(10);
            
message_end();
        }
        
        if(!
is_user_alive(i))
            continue;
        
        
set_user_rendering(ikRenderFxGlowShellrandom_num(150250), random_num(150250), random_num(150250), kRenderNormal25);
    }
    
    ++
g_count;
    
    
set_task(0.5"fn_ChangeRender");
}

public 
fn_ChangeScreens()
{
    if(
g_count_screens == 75 || g_finish)
        return;
    
    static 
i;
    if((
g_count_screens 15) == 0)
    {
        for(
1<= g_maxplayers; ++i)
        {
            if(!
is_user_connected(i))
                continue;
            
            
message_begin(MSG_ONE_UNRELIABLEg_message_screenshake_i);
            
write_short(UNIT_SECOND 28);
            
write_short(UNIT_SECOND 18);
            
write_short(UNIT_SECOND 28);
            
message_end();
        }
    }
    
    for(
1<= g_maxplayers; ++i)
    {
        if(!
is_user_connected(i))
            continue;
        
        
message_begin(MSG_ONE_UNRELIABLEg_message_screenfade_i)
        
write_short(UNIT_SECOND*4);
        
write_short(UNIT_SECOND*4);
        
write_short(0x0000);
        
write_byte(random_num(100250));
        
write_byte(random_num(100250));
        
write_byte(random_num(100250));
        
write_byte(200);
        
message_end();
    }
    
    ++
g_count_screens;
    
    
set_task(0.2"fn_ChangeScreens");
}

public 
fn_Finish()
{
    
g_finish 1;
    
    
client_cmd(0"mp3 stop; stopsound");
    
    
client_cmd(0"spk weapons/c4_explode1.wav");
    
client_cmd(0"spk weapons/c4_explode1.wav");
    
    
set_lights("");
    
    new 
i;
    for(
1<= g_maxplayers; ++i)
    {
        if(!
is_user_connected(i))
            continue;
        
        
message_begin(MSG_ONE_UNRELIABLEg_message_screenfade_i)
        
write_short(UNIT_SECOND*4);
        
write_short(UNIT_SECOND*4);
        
write_short(0x0000);
        
write_byte(255);
        
write_byte(255);
        
write_byte(25);
        
write_byte(255);
        
message_end();
        
        
set_user_rendering(i);
    }
    
    
set_task(0.3"fn_R");
    
set_task(2.0"fn_Restart3");
}

public 
fn_R()
    
server_cmd("sv_restart 1")

public 
fn_Restart3()
{
    
client_print(0print_chat"V4L3 V4L3 V4L3 V4L3 V4L3 V4L3 V4L3 V4L3");
    
client_print(0print_chat"VaLe VaLe VaLe VaLe VaLe VaLe VaLe VaLe");
    
client_print(0print_chat"vAlE vAlE vAlE vAlE vAlE vAlE vAlE vAlE");
    
client_print(0print_chat"VALE VALE VALE VALE VALE VALE VALE VALE");
}

public 
fn_ChangeNumber()
{
    if(
g_count_final == 6)
        return;
    
    new 
sSound[64];
    
    switch(
g_count_final)
    {
        case 
1formatex(sSoundcharsmax(sSound), "t_2c2/tcs_five.wav");
        case 
2formatex(sSoundcharsmax(sSound), "t_2c2/tcs_four.wav");
        case 
3formatex(sSoundcharsmax(sSound), "t_2c2/tcs_three.wav");
        case 
4formatex(sSoundcharsmax(sSound), "t_2c2/tcs_two.wav");
        case 
5formatex(sSoundcharsmax(sSound), "t_2c2/tcs_one.wav");
    }
    
    
client_cmd(0"spk ^"%s^""sSound);
    
    ++
g_count_final;
    
    
set_task(5.0"fn_ChangeNumber");

Ty,

But not this excatly.! as video.
chintu is offline
Krtola
Veteran Member
Join Date: Oct 2013
Location: Serbia
Old 04-13-2015 , 07:28   Re: [req] wOw see this once.!
Reply With Quote #7

Vale have just .amxx
Anyway,download link work fine for me.
Try to open it with some other browser...
Krtola is offline
Send a message via Skype™ to Krtola
chintu
Senior Member
Join Date: Jul 2013
Old 04-13-2015 , 07:35   Re: [req] wOw see this once.!
Reply With Quote #8

Quote:
Originally Posted by Krtola View Post
Vale have just .amxx
Anyway,download link work fine for me.
Try to open it with some other browser...
Ok.

can u re make it ?

Last edited by chintu; 04-13-2015 at 07:36.
chintu is offline
Krtola
Veteran Member
Join Date: Oct 2013
Location: Serbia
Old 04-13-2015 , 07:43   Re: [req] wOw see this once.!
Reply With Quote #9

I can not.
Try to opet link with google chrome,internet explorer,firefox,opera etc down link is ok...
Krtola is offline
Send a message via Skype™ to Krtola
chintu
Senior Member
Join Date: Jul 2013
Old 04-13-2015 , 07:57   Re: [req] wOw see this once.!
Reply With Quote #10

Quote:
Originally Posted by Krtola View Post
I can not.
Try to opet link with google chrome,internet explorer,firefox,opera etc down link is ok...
Ok.
chintu is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 19:57.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode