Peršokti į turinį
  • ŽAIDIMAI
  • , ŽAIDIMAI
  • ŽAIDIMAI

Compile Error


ManteaLs`

Ši tema yra neaktyvi. Paskutinis pranešimas šioje temoje buvo prieš 5244 dienas (-ų). Patariame sukurti naują temą, o ne rašyti naują pranešimą.

Už neaktyvių temų prikėlimą galite sulaukti įspėjimo ir pranešimo pašalinimo!

Recommended Posts

Sveiki B)

Tai iskart ainu prie reikalo.

Pajamiau sita vipmenu plugina:

/*************************************************************************
* You can set it on/off by typing 'amx_cvar amx_vipmenu 1/0' in console
* Credits: XuNTriC -> Helped us with the menu
*          p4ddy -> Original idea with his /adminmenu at Prokreedz Plugin
*
* To activate the menu type /vmenu or /vipmenu 
* 
* Copyright (C) 2008-2009 Dragosh/AMXX Communit
*
* NOTE* Only admins can use it!
**************************************************************************
*/ 


#include 
#include 
#include 
#include 

new plugin_on

enum Color
{
NORMAL = 1, // clients scr_concolor cvar color
GREEN, // Green Color
TEAM_COLOR, // Red, grey, blue
GREY, // grey
RED, // Red
BLUE, // Blue
}

new TeamName[][] = 
{
"",
"TERRORIST",
"CT",
"SPECTATOR"
}


public plugin_init(){

   register_plugin("VIP MENU", "1.1", "dragosh, MIk3")
   register_menucmd(register_menuid("VIP MENU"), 1023, "setoption") 
   plugin_on = register_cvar("amx_vipmenu", "1")


   register_clcmd("say /vipmenu","vip_menu",ADMIN_CVAR)
   register_clcmd("say_team /vipmenu","vip_menu",ADMIN_CVAR)

   register_clcmd("say /vmenu","vip_menu",ADMIN_CVAR)
   register_clcmd("say_team /vmenu","vip_menu",ADMIN_CVAR)

   register_clcmd("say /noriuvip", "ShowMotd")
   register_clcmd("say", "handle_say")


}

public vip_menu(id,level,cid) 
{
if ( !get_pcvar_num(plugin_on) ) 
{	
	ColorChat(id, RED, "V.I.P Meniu Laikinai Isjugtas!");
	return PLUGIN_HANDLED;
}

       if(!cmd_access(id,level,cid,2))
	return PLUGIN_HANDLED

chooseoption(id)

return PLUGIN_HANDLED

}

public chooseoption(id)
{
 new menu[192] 
   new keys = MENU_KEY_0|MENU_KEY_1|MENU_KEY_2|MENU_KEY_3|MENU_KEY_4|MENU_KEY_5|MENU_KEY_6|MENU_KEY_7|MENU_KEY_8|MENU_KEY_9     
   format(menu, 191, "\yVIP MENU^n^n\r1.\w Gravity^n\r2.\w Health^n\r3.\w Vip Model^n\r4.\w NoClip^n\r5.\w Armor^n\r6.\w GodMode^n^n\r7.\w Isjungti Godmode^n\r8.\w Isjungti Noclip ^n\r9.\w Isjungti VIP Modeli^n^n\r0.\w Exit") 
   show_menu(id, keys, menu)      
   return PLUGIN_CONTINUE
}

public setoption(id, key, menu)
{
   if(key == 0) {
        new name[17]
        get_user_name(id, name, 18)
        set_user_gravity(id,0.7)
        ColorChat(0, RED, "^x04[V.I.P] ^x03%s^x01 Pasirinko ^x04gravity^x01 (700)", name)
        return PLUGIN_HANDLED
   }

   if(key == 1) {
        new name[17]
        get_user_name(id, name, 18)
        set_user_health(id, 150)
        ColorChat(0, RED, "^x04[V.I.P] ^x03%s^x01 Pasirinko^x04 150hp", name)
        return PLUGIN_HANDLED

   }

   if(key == 2) {
        new name[17]
        get_user_name(id, name, 18)
        cs_set_user_model(id, "vip")
        ColorChat(id, TEAM_COLOR, "^x04[V.I.P] ^x03%s^x01 Nusistate ^x03VIP Modeli.", name)
        return PLUGIN_HANDLED
   }

   if(key == 3) {
        new name[17]
        get_user_name(id, name, 18)
        set_user_noclip(id, 1)
        ColorChat(0, RED, "^x04[V.I.P] ^x03%s^x01 Pasirinko ^x04NoClip.", name)
        return PLUGIN_HANDLED

   }

   if(key == 4) {
        new name[17]
        get_user_name(id, name, 18)
        set_user_armor(id, 150)
        ColorChat(0, RED, "^x04[V.I.P] ^x03%s^x01 Pasirinko^x04 Armora.", name)
        return PLUGIN_HANDLED
   }

   if(key == 5) {
        new name[17]
        get_user_name(id, name, 18)
        set_user_godmode(id, 1)
        ColorChat(0, RED, "^x04[V.I.P] ^x03%s^x01 Pasirinko^x04 GodMode.", name)
        return PLUGIN_HANDLED
   }

   if(key == 6) {
        new name[17]
        get_user_name(id, name, 18)
        set_user_godmode(id, 0)
        ColorChat(0, RED, "^x04[V.I.P] ^x03%s^x01 Istryne^x04 GodMode.", name)
        return PLUGIN_HANDLED
   }

   if(key == 7) {
        new name[17]
        get_user_name(id, name, 18)
        set_user_noclip(id, 0)
        ColorChat(0, RED, "^x04[V.I.P] ^x03%s^x01   Istryne ^x04NoClip.", name)
        return PLUGIN_HANDLED
   }

   if(key == 8) {
        new name[17]
        get_user_name(id, name, 18)
        cs_reset_user_model (id)
        ColorChat(0, RED, "^x04[V.I.P] ^x03%s^x01  Istryne ^x04Vip Modeli.", name)
        return PLUGIN_HANDLED
   }

   else {
        return PLUGIN_HANDLED
   }

   return PLUGIN_HANDLED
}

public plugin_precache()
{
       precache_model("models/player/vip/vip.mdl")
return PLUGIN_CONTINUE 

}

ColorChat(id, Color:type, const msg[], {Float,Sql,Result,_}:...)
{
new message[256];

switch(type)
{
	case NORMAL: // clients scr_concolor cvar color
	{
		message[0] = 0x01;
	}
	case GREEN: // Green
	{
		message[0] = 0x04;
	}
	default: // White, Red, Blue
	{
		message[0] = 0x03;
	}
}

vformat(message[1], 251, msg, 4);

// Make sure message is not longer than 192 character. Will crash the server.
message[192] = '^0';

new team, ColorChange, index, MSG_Type;

if(id)
{
	MSG_Type = MSG_ONE;
	index = id;
} else {
	index = FindPlayer();
	MSG_Type = MSG_ALL;
}

team = get_user_team(index);
ColorChange = ColorSelection(index, MSG_Type, type);

ShowColorMessage(index, MSG_Type, message);

if(ColorChange)
{
	Team_Info(index, MSG_Type, TeamName[team]);
}
}

ShowColorMessage(id, type, message[])
{
static bool:saytext_used;
static get_user_msgid_saytext;
if(!saytext_used)
{
	get_user_msgid_saytext = get_user_msgid("SayText");
	saytext_used = true;
}
message_begin(type, get_user_msgid_saytext, _, id);
write_byte(id)		
write_string(message);
message_end();	
}

Team_Info(id, type, team[])
{
static bool:teaminfo_used;
static get_user_msgid_teaminfo;
if(!teaminfo_used)
{
	get_user_msgid_teaminfo = get_user_msgid("TeamInfo");
	teaminfo_used = true;
}
message_begin(type, get_user_msgid_teaminfo, _, id);
write_byte(id);
write_string(team);
message_end();

return 1;
}

ColorSelection(index, type, Color:Type)
{
switch(Type)
{
	case RED:
	{
		return Team_Info(index, type, TeamName[1]);
	}
	case BLUE:
	{
		return Team_Info(index, type, TeamName[2]);
	}
	case GREY:
	{
		return Team_Info(index, type, TeamName[0]);
	}
}

return 0;
}


FindPlayer()
{
new i = -1;

while(i <= get_maxplayers())
{
	if(is_user_connected(++i))
		return i;
}

return -1;
}

Pats truputi isverciau i lietuviu kalba.

Taigi isemiau is sito plugino sita koda:

public chooseoption(id)
{
 new menu[192] 
   new keys = MENU_KEY_0|MENU_KEY_1|MENU_KEY_2|MENU_KEY_3|MENU_KEY_4|MENU_KEY_5|MENU_KEY_6|MENU_KEY_7|MENU_KEY_8|MENU_KEY_9     
   format(menu, 191, "\yVIP MENU^n^n\r1.\w Gravity^n\r2.\w Health^n\r3.\w Vip Model^n\r4.\w NoClip^n\r5.\w Armor^n\r6.\w GodMode^n^n\r7.\w Isjungti Godmode^n\r8.\w Isjungti Noclip ^n\r9.\w Isjungti VIP Modeli^n^n\r0.\w Exit") 
   show_menu(id, keys, menu)      
   return PLUGIN_CONTINUE
}

public setoption(id, key, menu)
{
   if(key == 0) {
        new name[17]
        get_user_name(id, name, 18)
        set_user_gravity(id,0.7)
        ColorChat(0, RED, "^x04[V.I.P] ^x03%s^x01 Pasirinko ^x04gravity^x01 (700)", name)
        return PLUGIN_HANDLED
   }

   if(key == 1) {
        new name[17]
        get_user_name(id, name, 18)
        set_user_health(id, 150)
        ColorChat(0, RED, "^x04[V.I.P] ^x03%s^x01 Pasirinko^x04 150hp", name)
        return PLUGIN_HANDLED

   }

   if(key == 2) {
        new name[17]
        get_user_name(id, name, 18)
        cs_set_user_model(id, "vip")
        ColorChat(id, TEAM_COLOR, "^x04[V.I.P] ^x03%s^x01 Nusistate ^x03VIP Modeli.", name)
        return PLUGIN_HANDLED
   }

   if(key == 3) {
        new name[17]
        get_user_name(id, name, 18)
        set_user_noclip(id, 1)
        ColorChat(0, RED, "^x04[V.I.P] ^x03%s^x01 Pasirinko ^x04NoClip.", name)
        return PLUGIN_HANDLED

   }

   if(key == 4) {
        new name[17]
        get_user_name(id, name, 18)
        set_user_armor(id, 150)
        ColorChat(0, RED, "^x04[V.I.P] ^x03%s^x01 Pasirinko^x04 Armora.", name)
        return PLUGIN_HANDLED
   }

   if(key == 5) {
        new name[17]
        get_user_name(id, name, 18)
        set_user_godmode(id, 1)
        ColorChat(0, RED, "^x04[V.I.P] ^x03%s^x01 Pasirinko^x04 GodMode.", name)
        return PLUGIN_HANDLED
   }

   if(key == 6) {
        new name[17]
        get_user_name(id, name, 18)
        set_user_godmode(id, 0)
        ColorChat(0, RED, "^x04[V.I.P] ^x03%s^x01 Istryne^x04 GodMode.", name)
        return PLUGIN_HANDLED
   }

   if(key == 7) {
        new name[17]
        get_user_name(id, name, 18)
        set_user_noclip(id, 0)
        ColorChat(0, RED, "^x04[V.I.P] ^x03%s^x01   Istryne ^x04NoClip.", name)
        return PLUGIN_HANDLED
   }

   if(key == 8) {
        new name[17]
        get_user_name(id, name, 18)
        cs_reset_user_model (id)
        ColorChat(0, RED, "^x04[V.I.P] ^x03%s^x01  Istryne ^x04Vip Modeli.", name)
        return PLUGIN_HANDLED
   }

   else {
        return PLUGIN_HANDLED
   }

   return PLUGIN_HANDLED
}

pajamiau ir pameginau sujungti abu pluginus,va kaip viskas atrode:

#define DAMAGE_RECIEVED
#include 
#include 
#include 
#include 
static const COLOR[] = "^x04" //green
static const CONTACT[] = ""
new maxplayers
new gmsgSayText
new mpd, mkb, mhb
new g_MsgSync
new health_add
new health_hs_add
new health_max
new nKiller
new nKiller_hp
new nHp_add
new nHp_max
new g_awp_active
new g_menu_active
new bool:HasC4[33]
#define Keysrod (1<<0)|(1<<1)|(1<<9) // Keys: 1234567890
new round = 1
#if defined DAMAGE_RECIEVED
new g_MsgSync2
#endif

public plugin_init()
{
register_plugin("VIP Eng Version", "2.03", "Dunno")
mpd = register_cvar("money_per_damage","3")
mkb = register_cvar("money_kill_bonus","500")
mhb = register_cvar("money_hs_bonus","200")
health_add = register_cvar("amx_vip_hp", "15")
health_hs_add = register_cvar("amx_vip_hp_hs", "30")
health_max = register_cvar("amx_vip_max_hp", "100")
g_awp_active = register_cvar("awp_active", "1")
g_menu_active = register_cvar("menu_active", "1")

register_event("Damage","Damage","b")
register_event("DeathMsg","death_msg","a")
register_logevent("logevent_Round_Start", 2, "1=Round_Start");
register_event("DeathMsg", "hook_death", "a", "1>0")

maxplayers = get_maxplayers()

register_event("Damage", "on_damage", "b", "2!0", "3=0", "4!0")

g_MsgSync = CreateHudSyncObj()

#if defined DAMAGE_RECIEVED
g_MsgSync2 = CreateHudSyncObj()
#endif
register_menucmd(register_menuid("rod"), Keysrod, "Pressedrod")
register_logevent("logevent_Round_Start", 2, "1=Round_Start")
register_clcmd("awp","HandleCmd")
   	register_clcmd("sg550","HandleCmd")
   	register_clcmd("g3sg1","HandleCmd")
   	register_event("CurWeapon", "event_CurWeapon", "be", "1=1")
   	register_event("CurWeapon", "event_CurWeaponn", "be", "1=1")
   	register_event("CurWeapon", "event_CurWeaponnn", "be", "1=1")
register_clcmd("say /wantvip","ShowMotd")
maxplayers = get_maxplayers()
gmsgSayText = get_user_msgid("SayText")
register_clcmd("say", "handle_say")
register_cvar("amx_contactinfo", CONTACT, FCVAR_SERVER)
}

public on_damage(id)
{
new attacker = get_user_attacker(id)

#if defined DAMAGE_RECIEVED
// id should be connected if this message is sent, but lets check anyway
if ( is_user_connected(id) && is_user_connected(attacker) )
if (get_user_flags(attacker) & ADMIN_LEVEL_H)
{
	new damage = read_data(2)

	set_hudmessage(255, 0, 0, 0.45, 0.50, 2, 0.1, 4.0, 0.1, 0.1, -1)
	ShowSyncHudMsg(id, g_MsgSync2, "%i^n", damage)
#else
if ( is_user_connected(attacker) && if (get_user_flags(attacker) & ADMIN_LEVEL_H) )
{
	new damage = read_data(2)
#endif
	set_hudmessage(0, 100, 200, -1.0, 0.55, 2, 0.1, 4.0, 0.02, 0.02, -1)
	ShowSyncHudMsg(attacker, g_MsgSync, "%i^n", damage)
}
}

public Damage(id)
{
new weapon, hitpoint, attacker = get_user_attacker(id,weapon,hitpoint)
if(attacker<=maxplayers && is_user_alive(attacker) && attacker!=id)
if (get_user_flags(attacker) & ADMIN_LEVEL_H) 
{
	new money = read_data(2) * get_pcvar_num(mpd)
	if(hitpoint==1) money += get_pcvar_num(mhb)
	cs_set_user_money(attacker,cs_get_user_money(attacker) + money)
}
}

public death_msg()
{
if(read_data(1)<=maxplayers && read_data(1) && read_data(1)!=read_data(2)) cs_set_user_money(read_data(1),cs_get_user_money(read_data(1)) + get_pcvar_num(mkb) - 300)
}

public logevent_Round_Start()
{
round++;
new players[32], player, pnum;
get_players(players, pnum, "a");
for(new i = 0; i < pnum; i++)
{
	player = players[i];
	if(get_user_flags(player) & ADMIN_LEVEL_H)
	{
	give_item(player, "weapon_hegrenade");
	give_item(player, "weapon_flashbang");
	give_item(player, "weapon_flashbang");
	give_item(player, "weapon_smokegrenade");
	give_item(player, "item_kevlar");
	give_item(player, "item_assaultsuit");
	give_item(player, "item_thighpack");
	if (!get_pcvar_num(g_menu_active))
		return PLUGIN_CONTINUE
	if(round > 3) Showrod(player)
	}
}
return PLUGIN_HANDLED
}

public hook_death()
{
  // Killer id
  nKiller = read_data(1)

  if ( (read_data(3) == 1) && (read_data(5) == 0) )
  {
     nHp_add = get_pcvar_num (health_hs_add)
  }
  else
     nHp_add = get_pcvar_num (health_add)
  nHp_max = get_pcvar_num (health_max)
  // Updating Killer HP
  if(!(get_user_flags(nKiller) & ADMIN_LEVEL_H))
  return;

  nKiller_hp = get_user_health(nKiller)
  nKiller_hp += nHp_add
  // Maximum HP check
  if (nKiller_hp > nHp_max) nKiller_hp = nHp_max
  set_user_health(nKiller, nKiller_hp)
  // Hud message "Healed +15/+30 hp"
  set_hudmessage(0, 255, 0, -1.0, 0.15, 0, 1.0, 1.0, 0.1, 0.1, -1)
  show_hudmessage(nKiller, "Healed +%d hp", nHp_add)
  // Screen fading
  message_begin(MSG_ONE, get_user_msgid("ScreenFade"), {0,0,0}, nKiller)
  write_short(1<<10)
  write_short(1<<10)
  write_short(0x0000)
  write_byte(0)
  write_byte(0)
  write_byte(200)
  write_byte(75)
  message_end()

}
public Showrod(id) {    
   show_menu(id, Keysrod, "\yVIP MENU^n^n\r1.\w Gravity^n\r2.\w Health^n\r3.\w Vip Model^n\r4.\w NoClip^n\r5.\w Armor^n\r6.\w GodMode^n^n\r7.\w Isjungti Godmode^n\r8.\w Isjungti Noclip ^n\r9.\w Isjungti VIP Modeli^n^n\r0.\w Exit") 
   show_menu(id, keys, menu)      
   return PLUGIN_CONTINUE
}

public setoption(id, key, menu)
{
   if(key == 0) {
        new name[17]
        get_user_name(id, name, 18)
        set_user_gravity(id,0.7)
        ColorChat(0, RED, "^x04[V.I.P] ^x03%s^x01 Pasirinko ^x04gravity^x01 (700)", name)
        return PLUGIN_HANDLED
   }

   if(key == 1) {
        new name[17]
        get_user_name(id, name, 18)
        set_user_health(id, 150)
        ColorChat(0, RED, "^x04[V.I.P] ^x03%s^x01 Pasirinko^x04 150hp", name)
        return PLUGIN_HANDLED

   }

   if(key == 2) {
        new name[17]
        get_user_name(id, name, 18)
        cs_set_user_model(id, "vip")
        ColorChat(id, TEAM_COLOR, "^x04[V.I.P] ^x03%s^x01 Nusistate ^x03VIP Modeli.", name)
        return PLUGIN_HANDLED
   }

   if(key == 3) {
        new name[17]
        get_user_name(id, name, 18)
        set_user_noclip(id, 1)
        ColorChat(0, RED, "^x04[V.I.P] ^x03%s^x01 Pasirinko ^x04NoClip.", name)
        return PLUGIN_HANDLED

   }

   if(key == 4) {
        new name[17]
        get_user_name(id, name, 18)
        set_user_armor(id, 150)
        ColorChat(0, RED, "^x04[V.I.P] ^x03%s^x01 Pasirinko^x04 Armora.", name)
        return PLUGIN_HANDLED
   }

   if(key == 5) {
        new name[17]
        get_user_name(id, name, 18)
        set_user_godmode(id, 1)
        ColorChat(0, RED, "^x04[V.I.P] ^x03%s^x01 Pasirinko^x04 GodMode.", name)
        return PLUGIN_HANDLED
   }

   if(key == 6) {
        new name[17]
        get_user_name(id, name, 18)
        set_user_godmode(id, 0)
        ColorChat(0, RED, "^x04[V.I.P] ^x03%s^x01 Istryne^x04 GodMode.", name)
        return PLUGIN_HANDLED
   }

   if(key == 7) {
        new name[17]
        get_user_name(id, name, 18)
        set_user_noclip(id, 0)
        ColorChat(0, RED, "^x04[V.I.P] ^x03%s^x01   Istryne ^x04NoClip.", name)
        return PLUGIN_HANDLED
   }

   if(key == 8) {
        new name[17]
        get_user_name(id, name, 18)
        cs_reset_user_model (id)
        ColorChat(0, RED, "^x04[V.I.P] ^x03%s^x01  Istryne ^x04Vip Modeli.", name)
        return PLUGIN_HANDLED
   }

   else {
        return PLUGIN_HANDLED
   }

   return PLUGIN_HANDLED
}


public HandleCmd(id){
if (!get_pcvar_num(g_awp_active))
     return PLUGIN_CONTINUE
if(get_user_flags(id) & ADMIN_LEVEL_H) 
	return PLUGIN_CONTINUE
client_print(id, print_center, "Sniper's Only For VIP's")
return PLUGIN_HANDLED
}


public event_CurWeapon(id){
if (!get_pcvar_num(g_awp_active))
     return PLUGIN_CONTINUE
if(read_data(2) == CSW_AWP){
   	if(!(get_user_flags(id) & ADMIN_LEVEL_H)){
           client_print(id, print_center, "Sniper's Only For VIP's")
           client_cmd(id, "drop")
       }
   }
   return PLUGIN_HANDLED
}

public event_CurWeaponn(id){
if (!get_pcvar_num(g_awp_active))
     return PLUGIN_CONTINUE
if(read_data(2) == CSW_SG550){
   	if(!(get_user_flags(id) & ADMIN_LEVEL_H)){
           client_print(id, print_center, "Sniper's Only For VIP's")
           client_cmd(id, "drop")
       }
   }
   return PLUGIN_HANDLED
}

public event_CurWeaponnn(id){
if (!get_pcvar_num(g_awp_active))
     return PLUGIN_CONTINUE

if(read_data(2) == CSW_G3SG1){
   	if(!(get_user_flags(id) & ADMIN_LEVEL_H)){
           client_print(id, print_center, "Sniper's Only For VIP's")
           client_cmd(id, "drop")
       }
   }
   return PLUGIN_HANDLED
}

public ShowMotd(id)
{
show_motd(id, "vip.txt")
}
public client_authorized(id)
{
set_task(30.0, "PrintText" ,id)
}
public PrintText(id)
{
client_print(id, print_chat, "[VIP] write /wantvip and u will see how get VIP and VIP privilegies.")
}

public handle_say(id) {
new said[192]
read_args(said,192)
if( ( containi(said, "who") != -1 && containi(said, "admin") != -1 ) || contain(said, "/vips") != -1 )
	set_task(0.1,"print_adminlist",id)
return PLUGIN_CONTINUE
}

public print_adminlist(user) 
{
new adminnames[33][32]
new message[256]
new contactinfo[256], contact[112]
new id, count, x, len

for(id = 1 ; id <= maxplayers ; id++)
	if(is_user_connected(id))
		if(get_user_flags(id) & ADMIN_LEVEL_H)
			get_user_name(id, adminnames[count++], 31)

len = format(message, 255, "%s VIP ONLINE: ",COLOR)
if(count > 0) {
	for(x = 0 ; x < count ; x++) {
		len += format(message[len], 255-len, "%s%s ", adminnames[x], x < (count-1) ? ", ":"")
		if(len > 96 ) {
			print_message(user, message)
			len = format(message, 255, "%s ",COLOR)
		}
	}
	print_message(user, message)
}
else {
	len += format(message[len], 255-len, "No VIP online.")
	print_message(user, message)
}

get_cvar_string("amx_contactinfo", contact, 63)
if(contact[0])  {
	format(contactinfo, 111, "%s Contact Server Admin -- %s", COLOR, contact)
	print_message(user, contactinfo)
}
}

print_message(id, msg[]) {
message_begin(MSG_ONE, gmsgSayText, {0,0,0}, id)
write_byte(id)
write_string(msg)
message_end()
}

Ir kaip meginu daryti compile,man ismeta 4 errorus...

Va Paveiksliukas:

43error.jpg

Nuoroda į komentarą
Dalintis per kitą puslapį

Ši tema yra neaktyvi. Paskutinis pranešimas šioje temoje buvo prieš 5244 dienas (-ų). Patariame sukurti naują temą, o ne rašyti naują pranešimą.

Už neaktyvių temų prikėlimą galite sulaukti įspėjimo ir pranešimo pašalinimo!

Prisijungti prie diskusijos

Palikti atsakymą galite iš karto, o užsiregistruoti vėliau. Jeigu jau turite paskyrą mūsų forume, Prisijunkite.

Svečias
Atsakyti šioje temoje...

×   Įklijuotas tekstas turi teksto formatavimą.   Pašalinti teksto formatavimą

  Galimi tik 75 veidukai.

×   Nuoroda buvo automatiškai įterpta.   Įterpti nuorodą paprastai

×   Jūsų ankstesnis pranešimas buvo atkurtas.   Išvalyti redaktorių

×   Jūs negalite įkelti nuotraukas tiesiogiai.Įkelkite arba įdėkite nuotraukas iš URL.

  • Šiame puslapyje naršo:   0 nariai

    • Nėra registruotų narių peržiūrinčių šį forumą.

Skelbimai


×
×
  • Sukurti naują...