Indice del forum
RegistratiCercaFAQLista utentiGruppiLog in
Help!!! Unreal IRCd 3.2.4
Vai a 1, 2, 3, 4  Successivo
 
Rispondi    Indice del forum » Ircd Precedente
Successivo
Help!!! Unreal IRCd 3.2.4
Autore Messaggio
claudioo93
Utente esperto


Registrato: 01/11/07 20:37
Messaggi: 358

Messaggio Help!!! Unreal IRCd 3.2.4 Rispondi citando
ragazzi dovete aiutarmi!!! sto impazzendo!!!
volevo creare un sever irc......
ma non ci riesco,e non so proprio cosa o sbagliato.
o configurato come c'? scritto su questo forum (se nn mi sbaglio)
non mi ricordo bene il link... ma cmq mi da quest'errore

* Loading IRCd configuration ..
* unrealircd.conf:419: Ignoring extra data
* unrealircd.conf:419 Ignoring extra end comment
* unrealircd.conf:420: Ignoring extra data
* unrealircd.conf:420: Ignoring extra data
[error] unrealircd.conf:538 Comment on this line does not end
[error] Could not load config file unrealircd.conf
[error] IRCd configuration failed to load
Gio Nov 01, 2007 8:43 pm Profilo Invia messaggio privato
claudioo93
Utente esperto


Registrato: 01/11/07 20:37
Messaggi: 358

Messaggio Rispondi citando
ragazzi vi prego rispondetemi.... mi piace il mondo irc, vorrei creare un sever irc ankio x? con il mio pc, senza acquistare una shell (il mio pc e acceso sempre)
vi prego.... rispondetemi., questo e il passo della configurazione

/*
* example.conf by Daniel Hawton AKA Osiris (osiris@unrealircd.org).
* $Id: example.conf,v 1.1.1.1.6.1.2.53.2.12 2007/06/15 19:50:22 stskeeps Exp $
*
* Works for Unreal3.2 and up
*
* Okay guys. This is the new example.conf. Its look is much like C++, kinda.
* Anyway it is time to go over this. It's hard to pick up at first, but
* with some pratice and reading you'll understand.
*
* Just copy this file to your main unrealircd dir and call it 'unrealircd.conf'.
*
* NOTE: All lines, except the opening { line, end in an ;, including the
* closing } line. The IRCd will ignore commented lines.
*
* PLEASE READ doc/unreal32docs.html! The online version is also available at:
* www.vulnscan.org/UnrealIRCd/unreal32docs.html
* It contains a lot information about the configfile: gives information about
* every block, variable, etc..
* If you try to edit this file without reading the documentation properly
* then you are pretty much guaranteed to fail!
*/

/* Type of comments */
#Comment type 1 (Shell type)
// Comment type 2(C++ style)
/* Comment type 3 (C Style) */
#those lines are ignored by the ircd.

/*
* UnrealIRCd supports modules, loading some of them is required.
* You need at least the commands module and a cloaking module.
*/

/* FOR *NIX, uncomment the following 2lines: */
//loadmodule "src/so";
//loadmodule "src/modules/cloak.so";

/* FOR Windows, uncomment the following 2 lines: */
loadmodule "modules/commands.dll";
loadmodule "modules/cloak.dll";

/*
* You can also include other configuration files.
* help.conf contains all the /helpop text. The badwords.*.conf
* files contain all the badword entries for mode +G...
* spamfilter.conf contains some good rules for current trojans.
* You probably want to include them:
*/
include "help.conf";
include "badwords.channel.conf";
include "badwords.message.conf";
include "badwords.quit.conf";
include "spamfilter.conf";

/*
* NEW: me {}
* OLD: M:Line
* me {} defines the name, description and unreal server numeric for
* this server. Syntax is as follows:
* me {
* name "87.10.138.127";
* info "Tramonto Irc";
* numeric (server numeric 5);
* };
* If linking, this numeric may not be used by any other server on the network.
*/
me
{
name "87.2.190.132";
info "Tramonto irc";
numeric 5;
};

/*
* NEW: admin {}
* OLD: A:Line
* Admin gives information on the server admin. you
* may put as many lines under admin { as you wish.
* Syntax is as follows:
* admin {
* "first line";
* "second line";
* [etc]
* };
*/
admin {
"claudioo93";
"claudioo93";
"sorrentinoclaudio@hotmail.it";
};

/*
* NEW: class {}
* OLD: Y:line (old was confusing)
* These define settings for classes. A class is a group setting for
* connections. Example, server connections, instead of going to a client's
* class, you direct it to the server class. Syntax is as follows
* class (class name)
* {
* pingfreq (how often to ping a user/server in seconds);
* maxclients (how many connections for this class);
* sendq (maximum send queue from a connection);
* recvq (maximum receive queue from a connection [flood control]);
* };
*/

class clients
{
pingfreq 90;
maxclients 500;
sendq 100000;
recvq 8000;
};

class servers
{
pingfreq 90;
maxclients 10; /* Max servers we can have linked at a time */
sendq 1000000;
connfreq 100; /* How many seconds between each connection attempt */
};

/*
* NEW: allow {}
* OLD: I:Line
* This defines allowing of connections...
* Basically for clients, it allows them to connect so you can have some
* control and/or set a password.
* Syntax is as follows:
* allow {
* ip (ip mask to allow);
* hostname (host mask);
* class (class to send them to [see class {}]);
* password "(password)"; (optional)
* maxperip (how many connections per ip); (optional)
* };
*/

allow {
ip *@*;
hostname *@*;
class clients;
maxperip 5;
};

/* Passworded allow line */
allow {
ip *@255.255.255.255;
hostname *@*.passworded.ugly.people;
class clients;
password "f00Ness";
maxperip 1;
};

/*
* NEW: allow channel {}
* OLD: chrestrict
* Allows a user to join a channel...
* like an except from deny channel.
* Syntax:
* allow channel {
* channel "channel name";
* };
*/
allow channel {
channel "#WarezSucks";
};

/*
* NEW: oper {}
* OLD: O:Line
* Defines an IRC Operator
* IRC operators are there to keep sanity to the server and usually keep it
* maintained and connected to the network.
* The syntax is as follows:
* oper (login) {
* class (class to put them in, if different from I, moves them to new
* class);
* from {
* userhost (ident@host);
* userhost (ident@host);
* };
* flags
* {
* (flags here*);
* };
* OR
* flags "old type flags, like OAaRD";
* };
*/


/* For a list of oper flags, see doc/unreal32docs.html#operblock
* [HIGHLY recommended to read]
*/

oper claudioo93 {
class clients;
from {
userhost @;
};
password "tramonto";
flags
{
netadmin;
can_zline;
can_gzline;
can_gkline;
global;
};
};

/*
* NEW: listen {}
* OLD: P:Line
* This defines a port for the ircd to bind to, to
* allow users/servers to connect to the server.
* Syntax is as follows:
* listen (ip number):(port number)
* {
* options {
* (options here);
* };
* };
* or for a plain
* listen: listen (ip):(port);
*
* NOTICE: for ipv6 ips (3ffe:b80:2:51d::2 etc), use listen [ip]:port;
*
* That works also.
*/

/* Options for listen:
OLD | NEW
S serversonly
C clientsonly
J java
s ssl
* standard
*/

/* NOTE ON SSL PORTS: SSL ports are pretty non-standardized,
* besides numerous high-SSL ports, some people say you should run
* it at 994 because that's the official SSL port.. but that
* requires root! Besides, port 194 is the official irc port and
* have you ever seen an ircd running on that?
* So, our suggestion is to use port 6697 for SSL, this is used by
* quite some networks and is recognized by for example StunTour.
* You are free to open up as many SSL ports as you want, but
* by (also) using 6697 you help the world standardize a bit Wink.
*/
listen 87.2.190.132:6697
listen 87.2.190.132:8067;
listen 87.2.190.132:6667;

/* NOTE: If you are on an IRCd shell with multiple IP's you are
* likely to get 'Address already in use' errors in your log
* and the ircd won't start. This means you MUST bind
* to a specific IP instead of '*', so for example:
* listen 1.2.3.4:6667;
* Obviously, replace the IP with the IP that was assigned to you.
*/

/*
* NEW: link {}
* OLD: C/N:Lines
* This defines an okay for a server connection.
* NOTE: BOTH SERVERS NEED A LINK {} SETTING TO CONNECT PROPERLY!
* Syntax is as follows:
* link (server name)
* {
* username (username, * works too);
* hostname (ip number/hostmask);
* bind-ip (What IP to bind to when connecting, or *);
* port (port to connect to, if any);
* hub (If this is a hub, * works, or servermasks it may bring in);
* [or leaf *;]
* password-connect "(pass to send)";
* password-receive "(pass we should receive)";
* class (class to direct servers into);
* options {
* (options here*);
* };
* // If we use SSL, we can choose what cipher to use in SSL mode
* // Retrieve a list by "openssl ciphers", separate ciphers with :'s
*
* ciphers "DES-CBC3-MD5";
*
* };
*/

/*
options:
OLD | NEW
S ssl
Z zip
N/A autoconnect
N/A quarantine
N/A nodnscache
*/


link 87.2.190.132
{
username *;
hostname 87.2.190.132;
bind-ip *;
port 6667;
hub *;
password-connect "tramonto";
password-receive "tramontor";
class servers;
options {
/* Note: You should not use autoconnect when linking services */
autoconnect;
ssl;
zip;
};
};
/*
*
* NEW: ulines {}
* OLD: U:Line
* U-lines give servers more power/commands, this should ONLY be set
* for services/stats servers and NEVER for normal UnrealIRCd servers!
* Syntax is as follows:
* ulines {
* (server to uline);
* (server to uline);
* [etc]
* };
*/
ulines {
87.2.190.132;
87.2.190.132;
};

/*
* NEW: drpass {}
* OLD: X:Line
* This defines the passwords for /die and /restart.
* Syntax is as follows:
* drpass {
* restart "(password for restarting)";
* die "(password for die)";
* };
*/
drpass {
restart "tramonto";
die "tramontor";
};

/*
* NEW: log {} OLD: N/A Tells the ircd where and what to log(s). You can have
* as many as you wish.
*
* FLAGS: errors, kills, tkl, connects, server-connects, kline, oper
*
* Syntax:
* log "log file"
* {
* flags
* {
* flag;
* flag;
* etc..
* };
* };
*/

log "ircd.log" {
/* Delete the log file and start a new one when it reaches 2MB, leave this out to always use the
same log */
maxsize 2097152;
flags {
oper;
kline;
connects;
server-connects;
kills;
errors;
sadmin-commands;
chg-commands;
oper-override;
spamfilter;
};
};

/*
* NEW: alias {}
* OLD: N/A
* This allows you to set command aliases such as /nickserv, /chanserv etc
* FLAGS: services, stats, normal
*
* Syntax:
* alias "name" {
* target "points to";
* type aliastype;
* };
*
* [NOTE: You could also include a pre-defined alias file here, see doc/unreal32docs.html section 2.9]
*/

// This points the command /nickserv to the user NickServ who is connected to the set::services-server server
/*alias NickServ {
target "NickServ";
type services;
};*/

// If you want the command to point to the same nick as the command, you can leave the nick entry out
//alias ChanServ { type services; };

// Points the /statserv command to the user StatServ on the set::stats-server server
//alias StatServ { type stats; };

// Points the /superbot command to the user SuperBot
//alias SuperBot { type normal; };


/* Standard aliases */
alias BotServ { type services; }; alias BS { nick BotServ; type services; };
alias ChanServ { type services; }; alias CS { nick ChanServ; type services; };
alias HostServ { type services; }; alias HS { nick HostServ; type services; };
alias HostServ { type services; }; alias HO { nick HostServ; type services; };
alias MemoServ { type services; }; alias MS { nick MemoServ; type services; };
alias NickServ { type services; }; alias NS { nick NickServ; type services; };
alias OperServ { type services; }; alias OS { nick OperServ; type services; };


/*
* NEW: alias {}
* OLD: N/A
* This allows you to set command aliases such as /identify, /services, etc
*
* Syntax:
* alias "name" {
* format "format string" {
* target "points to";
* type aliastype;
* parameters "parameters to send";
* };
* type command;
* };
*/
/* This is shown seperately because even though it has teh same name as the previous directive, it is very
* different in syntax, although it provides a similar function and relys on the standard aliases to work.
*/
/*
alias "identify" {
format "^#" {
target "chanserv";
type services;
parameters "IDENTIFY %1-";
};
format "^[^#]" {
target "nickserv";
type services;
parameters "IDENTIFY %1-";
};
type command;
};
*/
/* The alias::format directive is a regular expression. The first format matches the /identify command when
* the first character is a #. It then passes this along to the chanserv alias with the parameters IDENTIFY
* %1-. The second format matches then /identify command when the first character is not a #. It then
* passes the command to the nickserv alias with parameters IDENTIFY %1-.
*/

/* The alias::format::parameters is similar to scripting languages. %N (where N is a number) represents a
* parameter sent to the command (in this case /identify). If you specify %N- it means all parameters from
* N until the last parameter in the string. You may also specify %n which is replaced by
* the user's nickname.
*/

/* Standard aliases */
alias "services" {
format "^#" {
target "chanserv";
type services;
parameters "%1-";
};
format "^[^#]" {
target "nickserv";
type services;
parameters "%1-";
};
type command;
};

alias "identify" {
format "^#" {
target "chanserv";
type services;
parameters "IDENTIFY %1-";
};
format "^[^#]" {
target "nickserv";
type services;
parameters "IDENTIFY %1-";
};
type command;
};

/* This is an example of a real command alias */
/* This maps /GLINEBOT to /GLINE <parameter> 2d etc... */
alias "glinebot" {
format ".+" {
command "gline";
type real;
parameters "%1 2d Bots are not allowed on this server, please read the faq at http://www.example.com/faq/123";
};
type command;
};



/*
* NEW: tld {}
* OLD: T:Line
* This sets a different motd and rules files
* depending on the clients hostmask.
* Syntax is as follows:
* tld {
* mask (ident@host);
* motd "(motd file)";
* rules "(rules file)";
* };
*/

tld {
mask *@*.fr;
motd "ircd.motd.fr";
rules "ircd.rules.fr";
};

/* note: you can just delete the example block above,
* in which case the defaults motd/rules files (ircd.motd, ircd.rules)
* will be used for everyone.
*/

/*
* NEW: ban nick {}
* OLD: Q:Line
* Bans a nickname, so it can't be used.
* Syntax is as follows:
* ban nick {
* mask "(nick to ban)";
* reason "(reason)";
* };
*/
*/ban*/ nick {
mask "*C*h*a*n*S*e*r*v*";
reason "Reserved for Services";
};
/*
* NEW: ban ip {}
* OLD: Z:Line
* Bans an ip from connecting to the network.
* Syntax:
* ban ip { mask (ip number/hostmask); reason "(reason)"; };
*/
/*ban*/ ip {
mask 195.86.232.81;
reason "Delinked server";
};
/*
* NEW: ban server {}
* OLD: Server Q:Line
* Disables a server from connecting to the network.
* if the server links to a remote server, local server
* will disconnect from the network.
* Syntax is as follows:
* ban server {
* mask "(server name)";
* reason "(reason to give)";
* };
*/

/*ban/* server {
mask eris.berkeley.edu;
reason "Get out of here.";
};
/*
* NEW: ban user {}
* OLD: K:Line
* This makes it so a user from a certain mask can't connect
* to your server.
* Syntax:
* ban user { mask (hostmask/ip number); reason "(reason)"; };
*/

/*ban/* user {
mask *tirc@*.saturn.bbn.com;
reason "Idiot";
};

/*
* NEW: ban realname {}
* OLD: n:Line
* This bans a certain realname from being used.
* Syntax:
* ban realname {
* mask "(real name)";
* reason "(reason)";
* };
*/

/*ban/* realname {
mask "Swat Team";
reason "mIRKFORCE";
};

/*ban/* realname {
mask "sub7server";
reason "sub7";
};

/*
* NOTE FOR ALL BANS, they may be repeated for addition entries!
*
* NEW: except ban {}
* OLD: E:Line
* This makes it so you can't get banned.
* Syntax:
* except ban { mask (ident@host); };
* Repeat the except ban {} as many times
* as you want for different hosts.
*/

except /*ban/* {
/* don't ban stskeeps */
mask *stskeeps@212.*;
};

/*
* NEW: deny dcc {}
* OLD: dccdeny.conf
* Use this to block dcc send's... stops
* viruses better.
* Syntax:
* deny dcc
* {
* filename "file to block (ie, *exe)";
* reason "reason";
* };
*/
deny dcc {
filename "*sub7*";
reason "Possible Sub7 Virus";
};

/*
* NEW: deny channel {}
* OLD: N/A (NEW)
* This blocks channels from being joined.
* Syntax:
* deny channel {
* channel "(channel)";
* reason "reason";
* };
*/
deny channel {
channel "*Lamer*";
reason "Non vogliamo Lamer/e caneli su lamer in questo sever!";
};

/*
* NEW: vhost {}
* OLD: Vhost.conf file
* This sets a fake ip for non-opers, or
* opers too lazy to /sethost :P
* Syntax:
* vhost {
* vhost (vhost.com);
* from {
* userhost (ident@host to allow to use it);
* };
* login (login name);
* password (password);
* };
* then to use this vhost, do /vhost (login) (password) in IRC
*/
vhost {
vhost i.hate.microsefrs.com;
from {
userhost *@*.image.dk;
};
login stskeeps;
password moocowsrulemyworld;
};

/* You can include other configuration files */
/* include "klines.conf"; */

/* Network configuration */
set {
network-name "TramontoIRC";
default-server "87.10.138.127";
services-server "87.10.138.127";
stats-server "87.10.138.127";
help-channel "#Irchelp";
hiddenhost-prefix "rox";
/* prefix-quit "no"; */
/* Cloak keys should be the same at all servers on the network.
* They are used for generating masked hosts and should be kept secret.
* The keys should be 3 random strings of 5-100 characters
* (10-20 chars is just fine) and must consist of lowcase (a-z),
* upcase (A-Z) and digits (0-9) [see first key example].
*/
cloak-keys {
"aoAr1HnR6gl3sJ7hVz4Zb7x4YwpW";
"aoAr1HnR6gl3sJ7hVz4Zb7x4YwpB";
"aoAr1HnR6gl3sJ7hVz4Zb7x4YwpP";
};
/* on-oper host */
hosts {
local "locop.Tramonto.org";
global "ircop.Tramonto.org";
coadmin "coadmin.Tramonto.org";
admin "admin.Tramonto.org";
servicesadmin "csops.Tramonto.org";
netadmin "netadmin.Tramonto.org";
host-on-oper-up "no";
};
};

/* Server specific configuration */

set {
kline-address "sorrentinoclaudio@hotmail.it";
modes-on-connect "+ixw";
modes-on-oper "+xwgs";
oper-auto-join "#opers";
options {
hide-ulines;
/* You can enable ident checking here if you want */
/* identd-check; */
show-connect-info;
};

maxchannelsperuser 10;
/* The minimum time a user must be connected before being allowed to use a QUIT message,
* This will hopefully help stop spam */
anti-spam-quit-message-time 10s;
/* Make the message in static-quit show in all quits - meaning no
custom quits are allowed on local server */
/* static-quit "Client quit"; */

/* You can also block all part reasons by uncommenting this and say 'yes',
* or specify some other text (eg: "Bye bye!") to always use as a comment.. */
/* static-part yes; */

/* This allows you to make certain stats oper only, use * for all stats,
* leave it out to allow users to see all stats. Type '/stats' for a full list.
* Some admins might want to remove the 'kGs' to allow normal users to list
* klines, glines and shuns.
*/
oper-only-stats "okfGsMRUEelLCXzdD";

/* Throttling: this example sets a limit of 3 connection attempts per 60s (per host). */
throttle {
connections 3;
period 60s;
};

/* Anti flood protection */
anti-flood {
nick-flood 3:60; /* 3 nickchanges per 60 seconds (the default) */
};

/* Spam filter */
spamfilter {
ban-time 1d; /* default duration of a *line ban set by spamfilter */
ban-reason "Spam/Advertising"; /* default reason */
virus-help-channel "#help"; /* channel to use for 'viruschan' action */
/* except "#help"; channel to exempt from filtering */
};
};

/*
* Problems or need more help?
* 1) www.vulnscan.org/UnrealIRCd/unreal32docs.html
* 2) www.vulnscan.org/UnrealIRCd/faq/ <- contains 80% of your questions!
* 3) If you still have problems you can go irc.ircsystems.net #unreal-support,
* note that we require you to READ THE DOCUMENTATION and FAQ first!
*/
Ven Nov 02, 2007 9:37 am Profilo Invia messaggio privato
claudioo93
Utente esperto


Registrato: 01/11/07 20:37
Messaggi: 358

Messaggio Rispondi citando
Raga o fatto tutto!!!!
solo ke ora quando clicco su unreal IRCd non si apre nulla!!!
viene solo per 2 secondi la clessida, poi si togli e nn esce niente!!!
Ven Nov 02, 2007 11:30 am Profilo Invia messaggio privato
claudioo93
Utente esperto


Registrato: 01/11/07 20:37
Messaggi: 358

Messaggio Rispondi citando
.....
1 alla volta nn si capisce nulla.....
Ven Nov 02, 2007 12:37 pm Profilo Invia messaggio privato
Killer
Utente esperto


Registrato: 14/06/07 14:29
Messaggi: 439
Residenza: Roma

Messaggio Rispondi citando
oltre all'ironia gratuita (qui nessuno ? schiavo e si risponde quando si ha tempo e visto che ? gratis quindi non puoi pretendere ma puoi chiedere) oltre tutto posti un unico problema in pi? di una thread
questo mi indispettisce

per quanto mi riguarda non ti aiuto incazzato

_________________
武力
Ven Nov 02, 2007 12:54 pm Profilo Invia messaggio privato
claudioo93
Utente esperto


Registrato: 01/11/07 20:37
Messaggi: 358

Messaggio Rispondi citando
Sad Sad

cmq o provato ad aprirlo cn "apri come" e dice

* Loading IRCd configuration ..
[error] Unable to create file 'tmp/8066F0B7.commands.dll': Permission denied
* unrealircd.conf:40: loadmodule modules/commands.dll: failed to load: Failed to copy module file.
[error] IRCd configuration failed to load


o provato a mettere tutta la cartella su dekstope (come mi a detto una persona in chat) ed viene

"Impossibile avviare l'applicazione specificata.zlibwapi.dll non e stato trovato. Una nuova istallazione all'applicazione potrebbe risolvere il problema. "
Ven Nov 02, 2007 12:58 pm Profilo Invia messaggio privato
Killer
Utente esperto


Registrato: 14/06/07 14:29
Messaggi: 439
Residenza: Roma

Messaggio Rispondi citando
argh visto il consiglio che ti ha dato ti sei reso simpatico anche a quella persona Very Happy

_________________
武力
Ven Nov 02, 2007 1:26 pm Profilo Invia messaggio privato
claudioo93
Utente esperto


Registrato: 01/11/07 20:37
Messaggi: 358

Messaggio Rispondi citando
per piacere mi aiuti?
Ven Nov 02, 2007 1:28 pm Profilo Invia messaggio privato
Guido93
Utente Master


Registrato: 09/05/06 15:39
Messaggi: 528

Messaggio Rispondi citando
Ti ho dato le risoluzioni papabili nell'altro forum , dove hai fatto uguale casino :P
Dom Nov 04, 2007 12:19 pm Profilo Invia messaggio privato
Knap
Staff


Registrato: 10/12/05 21:23
Messaggi: 534
Residenza: Bergamo

Messaggio Rispondi citando
nn ne so niente di ircd ^^
Dom Nov 04, 2007 3:43 pm Profilo Invia messaggio privato Invia e-mail HomePage MSN
adccnoxy981
Veterano


Registrato: 30/07/21 04:52
Messaggi: 128
Residenza: sedoni

Messaggio Rispondi citando
Air Force 1
Nike Store
Nike Outlet Store
New Shoes
Kyries Shoes
Cheap Nike Shoes
New Nike Shoes
Pandora Jewelry
Nike Shoes
Nike Shoes
Nike Sneakers For Men
Nike Outlet
Nike Cortez
Pandora Outlet
Pandora Rings
Red Bottom Shoes
Nike Outlet Store Online Shopping
Yeezy Boost 350
Red Bottoms Louboutin
Nike Outlet Online
Louboutin shoes
Nike Air Force
Yeezy Sneakers
Nike Free Run
Nike Running Shoes
Pandora Canada
Nike Shoes
Nike Outlet Online
Adidas Yeezy
Louboutin Outlet
Nike Outlet Store
Lebron 16
Pandora Charms
Christian Louboutin Shoes
Air Force Ones
NMD Adidas
Nike Factory Outlet
Yeezy
Nike Outlet Store Online Shopping
Adidas Yeezy
Asics Shoes
Nike Lebron 16
Pandora Necklaces Women
Kids Nike Shoes
Nike Outlet
Nike Shoes For Men Basketball
Nike Cyber Monday
Air Jordan Sneakers
Nike Air Zoom Pulse
Christian Louboutin
Cheap Basketball Shoes
Womens Nike Shoes
Huarache Sandals
Lebron 16 Shoes
Air Max 98
Jordan 13 Retro
Christian Louboutin Shoes
Pandora Earrings
Nike Outlet Store Online Shopping
Ferragamo Shoes
Yeezy Boost 350 V2
Fjallraven Backpack
Nike Air Max 270 Men
Nike Sneakers For Women
Nike Lebron 17 Low
Ultra Boost
Jordan Retro 11
Nike Shoes
Jordan 11 Gamma Blue
Yeezy 500 Blush
Pandora
Nike Clearance Store
Nike Zoom
Lebron James Shoes
Valentino
Nike Air Presto
Nike Outlet Store
Golden Goose
Pandora Jewelry Official Site
Cheap Yeezys
Nike Clearance
Nike Air Max 720
Nike Shoes
Red Bottoms
Vans
Christian Louboutin Outlet
Nike Outlet Store
Nike Air Max 95 Essential
Pandora Earrings
Nike Air Max 720
Nike Website
Adidas NMD
Nike Air Max 90
Nike Clearance
Air Max 98
Womens Nike Shoes
Louboutin Outlet
Nike Cortez
Air Jordan Shoes
Christian Louboutin Shoes
Moncler Outlet UK
Nike Air Max 97
Nike Outlet
Air Force 1
Nike KD
Nike Clearance Store
Pandora Bracelets For Women
Louboutin
Ferragamo Belts
Nike Free rn
Pandora Rings
Nike Shoes 2019
Pandora Bracelets
Jordans Shoes
Jordan Retro
Kyrie Irving Shoes
Nike Shoes
Pandora Earrings
Nike Factory
Louboutin Shoes
Air Jordans
Nike React
Nike Sneakers For Women
Nike Factory
Pandora Canada
Ferragamo Outlet
Jordans Sneakers
New Air Max 2019
Adidas Sneakers
Pandora Charms
Adidas Yeezy
Kids Jordan Shoes
Louboutin Outlet
Ultra Boost Adidas
Nike Shoes
Red Bottom Shoes For Women
Christian Louboutin
Adidas Stan Smith
Nike Factory
Pandora Canada
Fjallraven Kanken
Yeezy Shoes

_________________
adccnoxy981
Gio Set 09, 2021 4:22 pm Profilo Invia messaggio privato
adccnoxy981
Veterano


Registrato: 30/07/21 04:52
Messaggi: 128
Residenza: sedoni

Messaggio Rispondi citando
Red Bottom Shoes
Golden Goose Sneakers Outlet
Red Jordan 11
New Nike Shoes 2021
Nike Air Max 2018
Nike Shoes
Red Bottom Shoes
NMD
Air Jordans
Mid Star Golden Goose
Jordan Retro 11
Pandora Jewelry
Ferragamo Outlet
Nike Website
Nike Air Max
Air Jordan 4 Retro
Moncler
Air Jordan 3 Retro
Jordan Sneakers
Jordan 12 Retro
James Harden shoes
Nike Air Force One
ECCO Shoes For Men
Jordan 12
Yeezy
Jordan Shoes
Pandora
Jordan 4
Jordan Retro
Jordan Retro
Balenciaga Sneakers
Jordan 12
Air Max 98
Shoes GGDB
Moncler Jackets
Golden Goose For Sale
Air Jordan Retro
Air Jordan Sneakers
Golden Gooses For Sale
Yeezys
Kyrie Irving Shoes
Jordan 6 Retro
Jordan Shoes For Men
Jordan 11
Golden Goose
Huaraches Nike
Pandora Jewelry
GGDB Sneakers
Nike Outlet Store Online Shopping
Air Jordan
Nike Air Force 1
Ferragamo Outlet
New Jordan 11
Kanken Backpack
Air Jordan 9
Air Max 90
Fitflop Sandals Clearance
Jordan Win Like 96
Jordan 10
Jordans 11
Air Jordan 8
Pandora Bracelets
Men's Nike Shoes
New Jordans 2021
Jordan 4
Golden Goose Sneakers
Moncler
Jordan 1
Adidas Yeezy Boost 350
Jordan 5s
Nike Factory
Moncler Store
Nike Sale
Valentino Sneakers
Nike Outlet
Hermes Birkin
Pandora Rings Official Site
Jordan 11
Triple S Balenciaga
Pandora Ring
Adidas NMD
Pandora Canada
Air Jordan 3
Nike Outlet
Jordan 11's
Cheap Jordans For Sale
Golden Goose Sneakers
Air Jordan 5
Jordan 5 Retro
Golden Goose Outlets
Moncler Jackets
Jordan Retro 11
Jordan 13s
Pandora
Nike Shoes Women
New Jordans
Fitflops Sale Clearance
Moncler Outlet
Jordans Sneakers
Christian Louboutin Shoes
Jordan Retro 6
Nike Outlet
Jordan 11s
Nike Shoes
Air Jordan
Women Moncler Vest
Harden Shoes
Yeezy Shoes
Pandora Jewelry Official Site
Air Jordan Retro 11
Nike Outlet Store Online Shopping
Nike Snkrs
Jordan Shoes
Pandora Jewelry
Jordan 11
Jordans Sneakers
Golden Goose Shoes Women
Sneakers GGDB
Christian Louboutin shoes
Jordan 6 Rings
Air Max 270
Pandora Charms Outlet
Red Bottoms
Jordan Shoes
Jordan 14
Jordans Retro
Pandora Canada
Jordan 12 Retro
Yeezys
Yeezy
Pandora
Nike Air Max 95
Jackets Moncler
Air Jordan 4
Soccer Shoes
Moncler Outlet

_________________
adccnoxy981
Sab Set 11, 2021 4:49 am Profilo Invia messaggio privato
adccnoxy981
Veterano


Registrato: 30/07/21 04:52
Messaggi: 128
Residenza: sedoni

Messaggio Rispondi citando
Wholesale Jordans
Nike Outlet Store
Cheap Jordan Shoes
Cheap Jordan Shoes
Nike Outlet
Rings Pandora
Jordan 25
Nike Running Shoes For Women
Jordans 15
Air Jordan 22
Jordans 6
Nike Off White
Jordan 24
Nike Foamposites
Jordan 14
Air Max 720 Flyknit
Pandora Jewelry Official Site
Jordan 12
Nike Clearance
Air Max 270
NBA Store Canada
Air Force 1
Toddler Jordans
New Nikes Shoes
Jordan 11
Dior Jordans
Nike Wholesale China
Jordans 13
Nike Metcons
Nike Hyperdunk
Wholesale Jordans
Jordan Retro 12
Air Force 1 Men
Jordan 5 What The
Jordan Retros
Air Max
Nike Outlet Store
Nike Wholesale
Wholesale Nike Shoes
NFL Jerseys
Nike Roshe
Wholesale Nike Shoes China
Nike
Michael Jordan Shoes
Jordans 2021
Jordan 26
Adidas Yeezy Boost 350 V2
Pandora Ring
Nike Zoom Fly
Nike Shoes Wholesale
Kids Jordans
Nike Huaraches
MLB Jerseys
Air Force 1
Nike Running Shoes
Adidas Yeezy
NHL Store
Lebron James Sneakers
Adidas Shoes
Nike Shoes For Women
Jordans 19
Cheap Nike Shoes From China
Cheap Wholesale Nike Shoes Free Shipping
Nike Cyber Monday
Pandora
Jordans 20
Adidas Wholesale Distributor
Nike Jordan
Nike Shoes
Pandora Jewelry 70% off Clearance
Air Jordan 11 Retro
Nikes
Fjallraven Kanken
Air Jordan
Cheap Jordans Free Shipping Wholesale
Nike Slides
Nike Air Max 270
Nike Outlet Store
Jordan 2
Air Jordan 13 Retro
Jordan 33
Jordan 11 Low
Nike Air Force 1 High
Pandora Jewelry
Nike Jordan 1 Low
Jordan 11 Concord
Nike Huarache Men
Nike Zoom
Jordan 34
Nike Wholesale Dealer
Air Force 1s
Nike Shox
Christian Louboutin Shoes
Jordan 29
Jordan 32
Nike Sneakers
Cheap Jerseys
Air Jordan 31
Jordan 27
Nike Dunk
Cheap Shoes
NMD R1
Air Jordan 4
Jordan Shoes
Jordan AJ 1
Cheap Jerseys Wholesale
Nike Running Shoes For Women
Huaraches
NFL Shop Online
Air Jordan 17
NHL Jerseys
Adidas Outlet
Epic React
Cheap Adidas
Nike Sneakers For Men
Air Jordan 1 Retro
Pandora Bracelet Charms
Jordan 23
Air Jordan 33
Air Jordan 16
Jordan 35
Air Max
Nike Shoes
Nike Shoes
Pandora Jewelry Official Site
Nike Shoes Canada
Cheap Jordans Wholesale
Adidas Wholesale Distributor
Wholesale Jordans
Nike Shoes For Mens
Nike Flex
Christian Louboutin Outlet
Air Jordan 21
Air Jordan 18
Adidas Yeezy
Air Jordan 33
Jordan 28
Red Bottom
Nike Canada
Pandora CZ Ring
Air Max
Adidas Canada
Nike Shoes Outlet Store Online Shopping
Nike Free
Official Nike Outlet Online Store
Pandora Rings
Air Force 1s
Adidas Outlet
Nike Women's Shoes
Nikes
Nike Canada
Nike Blazer
Jordan 30
Nike Factory
Jordans 12

_________________
adccnoxy981
Sab Set 11, 2021 4:51 am Profilo Invia messaggio privato
adccnoxy981
Veterano


Registrato: 30/07/21 04:52
Messaggi: 128
Residenza: sedoni

Messaggio Rispondi citando
Pandora Charms
Air Jordans 1
Balenciaga Sneakers
Pandora Charms
Pandora Charms Sale Clearance
Pandora Charms
Pandora Jewellery
Air Max 720
Pandora Jewelry Official Site
Adidas
Nike Running Shoes
Nike Outlet Store
Asics Running Shoes Women
Pandora Jewelry
Air Jordan 1 Dior
Salvatore Ferragamo Shoes
Nike Air Jordan 1
Jordan 1 High
Pandora Jewelry 70% Off Clearance
Air Jordan 1 Retro
Air Jordan 1 Mid
Pandora Jewelry
Air Jordan 1 Low
Pandora
Pandora Jewelry Outlet
Women Nike Sneakers
Jordan 1's
Moncler Jackets Women
Shoes Nike
Moncler Coat Men
Ferragamo
Pandora
Asics Sneakers
Asics Kayano
Nike Shoes For Men
Pandora Outlet
Pandora Bracelet
Balenciaga Shoes Women
Pandora Jewelry
Jordan Retro 1
Nike Shoes Women
Moncler Sale
Pandora Jewelry
Adidas Shoes Women
Nike Canada
Balenciaga Shoes
Pandora Outlet
Moncler Jackets Outlet
Wholesale Jordan Shoes From China
Adidas Yeezy
Moncler Sale
Nike
Pandora Jewelry Official Site
Air Jordan 1 Retro High Og
Nike
Yeezys
New Nike Shoes
Nike Canada
Nike Canada
Nike Outlet
Ferragamo
Nike Shoes Women
Goyard Outlet
Nike Shoes
Pandora Bracelet
Pandora Jewelry
Adidas Yeezy
Moncler Jacket
Nike Snkrs
Pandora Charms
Wholesale Jordan Shoes
Jordan 1 Lows
Pandora Jewelry Official Site
Adidas Shoes Men
Triple S Balenciaga
Pandora Jewelry
Balenciaga
Outlet Moncler
Nike Canada Online Shopping
Pandora Charms
Wholesale Jordans
Adidas Running Shoes
Nike Shoes
Pandora Bracelet
Pandora Jewelry
Men's Nike Shoes
Pandora Jewelry
Goyard Outlet
Ferragamo Shoes Women
Pandora
Adidas Clearance
Pandora Rings
Pandora Outlet Online
Nike Outlet
Nike Outlet Store
Pandora Charms
Nike Canada Online
Asics Outlet
NMD
Pandora Jewelry
Nike Shoes
Pandora Bracelets
Pandora Outlet
Cheap Moncler
Pandora Charms
Nike Outlet Online
Pandora Rings
Wholesale Jordan Shoes
Asics Outlet
Nike Store
Asics Outlet Store Online
Cheap Adidas Shoes
Adidas Trainers Sale
Pandora Charms
Pandora Outlet
Pandora Charms
Nike Sneakers For Men
Moncler Outlet
Adidas Canada
Adidas Shoes
Pandora Charms
Pandora Black Friday
Pandora Jewelry
Puma Outlet
Ferragamo Belt
Adidas Sneakers
Balenciaga Sneakers
Nike UK
Adidas Store
Pandora
Jordan Ones
Adidas Website
Adidas Canada
Pandora Charms
Pandora Bracelets
Pandora Jewelry Official Site
Pandora Jewelry
Balenciaga
Mens Basketball Shoes
Pandora
Jordan 1
Adidas New Shoes
Pandora Jewelry Charms
Yeezy Boost 350
Pandora Charms
Asics Shoes

_________________
adccnoxy981
Sab Set 11, 2021 2:48 pm Profilo Invia messaggio privato
adccnoxy981
Veterano


Registrato: 30/07/21 04:52
Messaggi: 128
Residenza: sedoni

Messaggio Rispondi citando
Yeezy 350
Yeezy Boost 350
Yeezy Boost 350 V2
Adidas
Pandora Jewelry
Yeezy
Adidas Shoes
Nike Canada
Nike Clearance Outlet Online Store
NMD
Nike Clearance Outlet
Adidas Shoes
Adidas Yeezy
Adidas Online
Adidas Outlet
Nike Sneakers
Nike Sneakers
New Adidas Shoes
Adidas Originals Superstar
Pandora Charms
Yeezy
Air Force 1
Adidas Ultra Boost
Nike Outlet
Adidas Ultra Boost
Roshe
Pandora Charms
Adidas Originals Superstar
Adidas Outlet
Nikes
Nike Air Force 1
Pandora UK
Yeezy
Nike Canada Online
Nike Outlet Store
Nike UK
Adidas Store
Nike Outlet
Nike Canada
Adidas Shoes
Adidas NMD
Adidas Shoes
Nike Shoes
Pandora Bracelets
Pandora Charms
Nike Running Shoes For Men
Adidas Yeezy 500
Nike Outlet
Adidas Yeezy
Adidas Trainers UK
Off White Shoes
Adidas Yeezy
Pandora Jewelry UK
Nike Outlet Store
Ultra Boost
Yeezy
Adidas Originals Superstar
Adidas UK
Nike Outlet Store Online Shipping
Nike Presto
Pandora Jewelry
Adidas Yeezy Shoes
Pandora Bracelet Charms
Nike Shoes

_________________
adccnoxy981
Dom Set 12, 2021 4:32 am Profilo Invia messaggio privato
Mostra prima i messaggi di:    
Rispondi    Indice del forum » Ircd Tutti i fusi orari sono GMT + 1 ora
Vai a 1, 2, 3, 4  Successivo
Pagina 1 di 4

 
Vai a: 
Non puoi inserire nuovi argomenti
Non puoi rispondere a nessun argomento
Non puoi modificare i tuoi messaggi
Non puoi cancellare i tuoi messaggi
Non puoi votare nei sondaggi


Powered by phpBB © 2001, 2005 phpBB Group
Design by Freestyle XL / Flowers Online.phpbb.it