Oggi è 17/06/2025, 15:13

Tutti gli orari sono UTC + 1 ora [ ora legale ]



Regole del forum


- Dare titoli sensati, non titoli tipo "Aiuto" oppure "Problema", i topic analoghi verranno immediatamente chiusi.
- Utilizzare http://www.pastebin.com per script superiori a 20 righe.



 Pagina 2 di 3 [ 60 messaggi ] 

Vai alla pagina :: « Precedente  1, 2, 3  Prossima »
  Apri un nuovo argomento Rispondi all’argomento

  Stampa pagina

Autore Messaggio
 Oggetto del messaggio: Re: [HELP]Come faccio?
MessaggioInviato: 17/04/2011, 15:47 
Banned

Iscritto il: 31/10/2010
Messaggi: 1363
Località: Sicilia
Favourite GTA: San Andreas
Xfire: peppinux

Karma
-10


Non connesso
GetPlayerIp


Top
 E-mail  
 

 Oggetto del messaggio: Re: [HELP]Come faccio?
MessaggioInviato: 17/04/2011, 16:10 
Utente

Iscritto il: 29/03/2011
Messaggi: 170
Favourite GTA: San Andreas

Karma
0


Non connesso
Compilatooo!!!! Adesso verifico se funziona tutto!

EDIT: Funziona tutto!
Come faccio a mettere che quando un utente sbaglia la rcon vengono avvisati gli admin online? (non loggato in rcon così fanno una figura da paperi o anche loggato)

_________________
Il mio server SA:MP.

HostName: [ITA] IronForge [0.3c]
Address: ironforge.hopto.org:7777
Mode: Sicily's City
Map: San Andreas

Immagine


Top
 E-mail  
 
 Oggetto del messaggio: Re: [HELP]Come faccio?
MessaggioInviato: 17/04/2011, 18:07 
Avatar utente
Utente

Iscritto il: 22/12/2010
Messaggi: 1098
Località: Agrigento (Sicilia)
Favourite GTA: San Andreas
Xfire: In PM

Karma
0


Non connesso
Sotto OnRconLoginAttempt(ip[], password[], success) inserisci:

Codice:
public OnRconLoginAttempt(ip[], password[], success)
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i) && IsPlayerAdmin(i))
{
switch(success)
{
case 0: SendClientMessage(i, -1, "Un player è loggato nella Rcon con successo");
case 1: SendClientMessage(i, -1, "Un player ha sbagliato la Rcon");
}
}
}
return 1;
}


Qui non ti dirà il nome... Per mettere il nome, ti consiglio di usare il mio include funcmit che include una funzione per prendere il nome di un player attraverso l'Ip.

_________________
Immagine


Top
 E-mail  
 
 Oggetto del messaggio: Re: [HELP]Come faccio?
MessaggioInviato: 17/04/2011, 20:43 
Utente

Iscritto il: 29/03/2011
Messaggi: 170
Favourite GTA: San Andreas

Karma
0


Non connesso
mitosking ha scritto:
Sotto OnRconLoginAttempt(ip[], password[], success) inserisci:

Codice:
public OnRconLoginAttempt(ip[], password[], success)
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i) && IsPlayerAdmin(i))
{
switch(success)
{
case 0: SendClientMessage(i, -1, "Un player è loggato nella Rcon con successo");
case 1: SendClientMessage(i, -1, "Un player ha sbagliato la Rcon");
}
}
}
return 1;
}


Qui non ti dirà il nome... Per mettere il nome, ti consiglio di usare il mio include funcmit che include una funzione per prendere il nome di un player attraverso l'Ip.

Ok, dove trovo l'include?

_________________
Il mio server SA:MP.

HostName: [ITA] IronForge [0.3c]
Address: ironforge.hopto.org:7777
Mode: Sicily's City
Map: San Andreas

Immagine


Top
 E-mail  
 
 Oggetto del messaggio: Re: [HELP]Come faccio?
MessaggioInviato: 17/04/2011, 20:54 
Avatar utente
Utente

Iscritto il: 22/12/2010
Messaggi: 1098
Località: Agrigento (Sicilia)
Favourite GTA: San Andreas
Xfire: In PM

Karma
0


Non connesso
Scusa, ricontrollando ho notato che non ho messo questa funzione. Toccherà crearla direttamente nella GameMode... Quindi, in basso a tutti, metti questo script:

Codice:
stock GetPlayerNameFromIP(ip[])
{
   new pName[MAX_PLAYER_NAME] = "-1", res[24], ips[16];
   for(new i = 0; i < MAX_PLAYERS; i++)
   {
       if(IsPlayerConnected(i))
       {
         GetPlayerIP(i, ips, 16);
         if(!strcmp(ip, ips, true)) return GetPlayerName(i, pName, sizeof(pName));
      }
   }
   return pName;
}


A questo punto lo script verrà così:

Codice:
public OnRconLoginAttempt(ip[], password[], success)
{
new string[128];
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i) && IsPlayerAdmin(i))
{
switch(success)
{
case 0:
{
format(string, 128, "Il player %s ha loggato nella Rcon con successo!", GetPlayerNameFromIP(ip));
SendClientMessage(playerid, -1, string);
}
case 1:
{
format(string, 128, "Il player %s ha sbagliato la Password RCON!", GetPlayerNameFromIP(ip));
SendClientMessage(playerid, -1, string);
}
}
}
}
return 1;
}

_________________
Immagine


Top
 E-mail  
 
 Oggetto del messaggio: Re: [HELP]Come faccio?
MessaggioInviato: 17/04/2011, 21:30 
Utente

Iscritto il: 29/03/2011
Messaggi: 170
Favourite GTA: San Andreas

Karma
0


Non connesso
Non hyo capito cosa devo inserire sotto OnRconLoginAttempt?
E dove fuori?
:S

_________________
Il mio server SA:MP.

HostName: [ITA] IronForge [0.3c]
Address: ironforge.hopto.org:7777
Mode: Sicily's City
Map: San Andreas

Immagine


Top
 E-mail  
 
 Oggetto del messaggio: Re: [HELP]Come faccio?
MessaggioInviato: 17/04/2011, 21:40 
Avatar utente
Utente

Iscritto il: 22/12/2010
Messaggi: 1098
Località: Agrigento (Sicilia)
Favourite GTA: San Andreas
Xfire: In PM

Karma
0


Non connesso
Leggi bene!! Sotto a tutto quanto (intento all'ultima riga dell'intera GameMode) inserisci il primo [code] che ho postato. Poi, all'interno del CallBack OnRconLoginAttempt, inserisci il codice che ti ho messo. Se non esiste, copia l'intero codice. Ho già messo il nome del callback all'inizio, quindi (se non è creato) copia tutto lo script al di fuori di un qualsiasi CallBack.

_________________
Immagine


Top
 E-mail  
 
 Oggetto del messaggio: Re: [HELP]Come faccio?
MessaggioInviato: 17/04/2011, 22:07 
Utente

Iscritto il: 29/03/2011
Messaggi: 170
Favourite GTA: San Andreas

Karma
0


Non connesso
Ok, grazie nn avevo afferrato il concetto prima... Adesso lo ho capito xD

Problemini del cavolo!!! :gh:

Questo è il mio OnRconLoginAttempt
Codice:
[spoiler]public OnRconLoginAttempt(ip[], password[], success)
{
    new playerid = GetPlayerIPFromID(ip);
if(!success)
{
    if(rconLoginsFalliti[playerid] != 2) return rconLoginsFalliti[playerid]++;
    if(rconLoginsFalliti[playerid] == 2) return Kick(playerid);
}
   return true;
}
public OnRconLoginAttempt(ip[], password[], success)
{
new string[128];
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i) && IsPlayerAdmin(i))
{
switch(success)
{
case 0:
{
format(string, 128, "Il player %s ha loggato nella Rcon con successo!", GetPlayerNameFromIP(ip));
SendClientMessage(playerid, -1, string);
}
case 1:
{
format(string, 128, "Il player %s ha sbagliato la Password RCON!", GetPlayerNameFromIP(ip));
SendClientMessage(playerid, -1, string);
}
}
}
}
return 1;
}[/spoiler]

Mi da questi errori:
Codice:
G:\Server GTA SAMP\gamemodes\new.pwn(582) : error 021: symbol already defined: "OnRconLoginAttempt"
G:\Server GTA SAMP\gamemodes\new.pwn(593) : error 017: undefined symbol "playerid"
G:\Server GTA SAMP\gamemodes\new.pwn(598) : error 017: undefined symbol "playerid"
G:\Server GTA SAMP\gamemodes\new.pwn(673) : error 017: undefined symbol "GetPlayerIP"
G:\Server GTA SAMP\gamemodes\new.pwn(674) : error 079: inconsistent return types (array & non-array)
G:\Server GTA SAMP\gamemodes\new.pwn(668) : warning 204: symbol is assigned a value that is never used: "res"
Pawn compiler 3.2.3664           Copyright (c) 1997-2006, ITB CompuPhase


5 Errors.

Vuoi che ti posto le 5 righe che danno errori?

_________________
Il mio server SA:MP.

HostName: [ITA] IronForge [0.3c]
Address: ironforge.hopto.org:7777
Mode: Sicily's City
Map: San Andreas

Immagine


Ultima modifica di Tom_Tom il 17/04/2011, 22:15, modificato 1 volta in totale.

Top
 E-mail  
 
 Oggetto del messaggio: Re: [HELP]Come faccio?
MessaggioInviato: 17/04/2011, 22:14 
Avatar utente
Utente

Iscritto il: 22/12/2010
Messaggi: 1098
Località: Agrigento (Sicilia)
Favourite GTA: San Andreas
Xfire: In PM

Karma
0


Non connesso
Figurati ;)

_________________
Immagine


Top
 E-mail  
 
 Oggetto del messaggio: Re: [HELP]Come faccio?
MessaggioInviato: 17/04/2011, 22:16 
Utente

Iscritto il: 29/03/2011
Messaggi: 170
Favourite GTA: San Andreas

Karma
0


Non connesso
C'è un problemino... Guarda le righe sopra e poi fammi sapere che cosa fare.. :S

_________________
Il mio server SA:MP.

HostName: [ITA] IronForge [0.3c]
Address: ironforge.hopto.org:7777
Mode: Sicily's City
Map: San Andreas

Immagine


Top
 E-mail  
 
 Oggetto del messaggio: Re: [HELP]Come faccio?
MessaggioInviato: 17/04/2011, 22:21 
Avatar utente
Utente

Iscritto il: 22/12/2010
Messaggi: 1098
Località: Agrigento (Sicilia)
Favourite GTA: San Andreas
Xfire: In PM

Karma
0


Non connesso
Significa che c'è ne già uno. Leggi attentamente ciò che ti ho scritto se ne esiste uno... Devi togliere solamente il nome del CallBack dal mio script, due parentesi graffe ed il return 1. Ecco cosa devi mettere nel CallBack già esistente:

Codice:
new string[128];
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i) && IsPlayerAdmin(i))
{
switch(success)
{
case 0:
{
format(string, 128, "Il player %s ha loggato nella Rcon con successo!", GetPlayerNameFromIP(ip));
SendClientMessage(playerid, -1, string);
}
case 1:
{
format(string, 128, "Il player %s ha sbagliato la Password RCON!", GetPlayerNameFromIP(ip));
SendClientMessage(playerid, -1, string);
}
}
}
}


Mi raccomando, in cima a tutto il CallBack lo devi mettere... Sennò poi non viene calcolato il return 1.

Per gli altri errori posta le righe esatte (magari abbinandole alle prime 3 righe per farle combaciare). Tu prima però prova come ti ho detto io.

_________________
Immagine


Top
 E-mail  
 
 Oggetto del messaggio: Re: [HELP]Come faccio?
MessaggioInviato: 17/04/2011, 22:35 
Utente

Iscritto il: 29/03/2011
Messaggi: 170
Favourite GTA: San Andreas

Karma
0


Non connesso
Io ho scritto così sotto il callbalck:
Codice:
new string[128];
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i) && IsPlayerAdmin(i))
{
switch(success)
{
case 0:
{
format(string, 128, "Il player %s ha loggato nella Rcon con successo!", GetPlayerNameFromIP(ip));
SendClientMessage(playerid, -1, string);
}
case 1:
{
format(string, 128, "Il player %s ha sbagliato la Password RCON!", GetPlayerNameFromIP(ip));
SendClientMessage(playerid, -1, string);
}
}
}
   return 1;
}
{
    new playerid = GetPlayerIPFromID(ip);
if(!success)
{
    if(rconLoginsFalliti[playerid] != 2) return rconLoginsFalliti[playerid]++;
    if(rconLoginsFalliti[playerid] == 2) return Kick(playerid);
}
   return 1;
{

_________________
Il mio server SA:MP.

HostName: [ITA] IronForge [0.3c]
Address: ironforge.hopto.org:7777
Mode: Sicily's City
Map: San Andreas

Immagine


Top
 E-mail  
 
 Oggetto del messaggio: Re: [HELP]Come faccio?
MessaggioInviato: 17/04/2011, 22:38 
Banned

Iscritto il: 31/10/2010
Messaggi: 1363
Località: Sicilia
Favourite GTA: San Andreas
Xfire: peppinux

Karma
-10


Non connesso
Allora fai una cosa.. annulla tutto quello che ti abbiamo detto sulla RCON e fai così:
Codice:
// In  cima
new rconLoginsFalliti[MAX_PLAYERS];

// Sotto OnPlayerConnect
rconLoginsFalliti[playerid] = 0;

// Sotto OnRconLoginAttempt
new
   playerid = getPlayerIDFromIP(ip),
   pName[MAX_PLAYER_NAME],
   string[128];
GetPlayerName(playerid, pName, sizeof(pName));
if(success)
{
   if(rconLoginsFalliti[playerid] > 0) rconLoginsFalliti[playerid] = 0;
   format(string, sizeof(string), "[ID: %d] %s si è loggato come Admin RCON con successo!", playerid, pName);
   SendClientMessageToAll(-1, string);
}
else
{
   if(rconLoginsFalliti[playerid] == 2)
   {
       format(string, sizeof(string), "[ID: %d] %s ha fallito 2/2 logins RCON ed è stato kickato.", playerid, pName);
       SendClientMessageToAll(-1, string);
       Kick(playerid);
   }
   else
   {
       rconLoginsFalliti[playerid]++;
       format(string, sizeof(string), "[ID: %d] %s ha fallito 1/2 logins RCON e tutti i players sono stati avvisati.", playerid, pName);
       SendClientMessageToAll(-1, string);
   }
}

// Fuori da tutto
getPlayerIDFromIP(ip[]) // By ~Peppinux AKA Peppe_Stasu
{
   new iIP[16];
   for(new i = 0; i < MAX_PLAYERS; i++)
   {
       if(IsPlayerConnected(i) && i != INVALID_PLAYER_ID && !IsPlayerNPC(i))
       {
           GetPlayerIp(i, iIP, sizeof(iIP));
         if(!strcmp(ip, iIP, true)) return i;
      }
   }
   return INVALID_PLAYER_ID;
}

Il compilatore non da nè errori nè warnings fammi sapere se ti funziona ;).


Top
 E-mail  
 
 Oggetto del messaggio: Re: [HELP]Come faccio?
MessaggioInviato: 17/04/2011, 22:46 
Utente

Iscritto il: 29/03/2011
Messaggi: 170
Favourite GTA: San Andreas

Karma
0


Non connesso
Era meglio prima, è venuta fuori una strage di errori :hideme:
Codice:
G:\Server GTA SAMP\gamemodes\new.pwn(574) : error 017: undefined symbol "getPlayerIDFromIP"
G:\Server GTA SAMP\gamemodes\new.pwn(599) : warning 225: unreachable code
G:\Server GTA SAMP\gamemodes\new.pwn(601) : error 029: invalid expression, assumed zero
G:\Server GTA SAMP\gamemodes\new.pwn(601) : error 004: function "OnPlayerUpdate" is not implemented
G:\Server GTA SAMP\gamemodes\new.pwn(606) : warning 225: unreachable code
G:\Server GTA SAMP\gamemodes\new.pwn(606) : error 029: invalid expression, assumed zero
G:\Server GTA SAMP\gamemodes\new.pwn(606) : error 004: function "OnPlayerStreamIn" is not implemented
G:\Server GTA SAMP\gamemodes\new.pwn(611) : warning 225: unreachable code
G:\Server GTA SAMP\gamemodes\new.pwn(611) : error 029: invalid expression, assumed zero
G:\Server GTA SAMP\gamemodes\new.pwn(611) : error 004: function "OnPlayerStreamOut" is not implemented
G:\Server GTA SAMP\gamemodes\new.pwn(616) : warning 225: unreachable code
G:\Server GTA SAMP\gamemodes\new.pwn(616) : error 029: invalid expression, assumed zero
G:\Server GTA SAMP\gamemodes\new.pwn(616) : error 004: function "OnVehicleStreamIn" is not implemented
G:\Server GTA SAMP\gamemodes\new.pwn(621) : warning 225: unreachable code
G:\Server GTA SAMP\gamemodes\new.pwn(621) : error 029: invalid expression, assumed zero
G:\Server GTA SAMP\gamemodes\new.pwn(621) : error 004: function "OnVehicleStreamOut" is not implemented
G:\Server GTA SAMP\gamemodes\new.pwn(626) : warning 225: unreachable code
G:\Server GTA SAMP\gamemodes\new.pwn(626) : error 029: invalid expression, assumed zero
G:\Server GTA SAMP\gamemodes\new.pwn(626) : error 004: function "OnDialogResponse" is not implemented
G:\Server GTA SAMP\gamemodes\new.pwn(631) : warning 225: unreachable code
G:\Server GTA SAMP\gamemodes\new.pwn(631) : error 029: invalid expression, assumed zero
G:\Server GTA SAMP\gamemodes\new.pwn(631) : error 004: function "OnPlayerClickPlayer" is not implemented
G:\Server GTA SAMP\gamemodes\new.pwn(636) : warning 225: unreachable code
G:\Server GTA SAMP\gamemodes\new.pwn(636) : error 029: invalid expression, assumed zero
G:\Server GTA SAMP\gamemodes\new.pwn(636) : error 017: undefined symbol "AutoMessage"
G:\Server GTA SAMP\gamemodes\new.pwn(637) : error 029: invalid expression, assumed zero
G:\Server GTA SAMP\gamemodes\new.pwn(637) : error 017: undefined symbol "AutoMessage"
G:\Server GTA SAMP\gamemodes\new.pwn(648) : warning 225: unreachable code
G:\Server GTA SAMP\gamemodes\new.pwn(648) : error 017: undefined symbol "getPlayerIDFromIP"
G:\Server GTA SAMP\gamemodes\new.pwn(661) : error 030: compound statement not closed at the end of file (started at line 601)
Pawn compiler 3.2.3664           Copyright (c) 1997-2006, ITB CompuPhase


21 Errors.

_________________
Il mio server SA:MP.

HostName: [ITA] IronForge [0.3c]
Address: ironforge.hopto.org:7777
Mode: Sicily's City
Map: San Andreas

Immagine


Top
 E-mail  
 
 Oggetto del messaggio: Re: [HELP]Come faccio?
MessaggioInviato: 18/04/2011, 0:06 
Avatar utente
Utente

Iscritto il: 22/12/2010
Messaggi: 1098
Località: Agrigento (Sicilia)
Favourite GTA: San Andreas
Xfire: In PM

Karma
0


Non connesso
Chissà che hai combinato... posta tutta la GM su pastebin.

_________________
Immagine


Top
 E-mail  
 
 Oggetto del messaggio: Re: [HELP]Come faccio?
MessaggioInviato: 18/04/2011, 13:35 
Utente

Iscritto il: 29/03/2011
Messaggi: 170
Favourite GTA: San Andreas

Karma
0


Non connesso
Eccola ---> http://pastebin.com/E7vJydGJ

_________________
Il mio server SA:MP.

HostName: [ITA] IronForge [0.3c]
Address: ironforge.hopto.org:7777
Mode: Sicily's City
Map: San Andreas

Immagine


Top
 E-mail  
 
 Oggetto del messaggio: Re: [HELP]Come faccio?
MessaggioInviato: 18/04/2011, 14:21 
Avatar utente
Utente

Iscritto il: 22/12/2010
Messaggi: 1098
Località: Agrigento (Sicilia)
Favourite GTA: San Andreas
Xfire: In PM

Karma
0


Non connesso
Sostituisci tutta la GM con questa: http://pastebin.com/tJB9miSk

_________________
Immagine


Top
 E-mail  
 
 Oggetto del messaggio: Re: [HELP]Come faccio?
MessaggioInviato: 18/04/2011, 15:26 
Utente

Iscritto il: 29/03/2011
Messaggi: 170
Favourite GTA: San Andreas

Karma
0


Non connesso
mitosking ha scritto:
Sostituisci tutta la GM con questa: http://pastebin.com/tJB9miSk

Ci sono sempre questi odiosi errori >.<
Codice:
G:\Server GTA SAMP\gamemodes\new.pwn(574) : error 017: undefined symbol "getPlayerIDFromIP"
G:\Server GTA SAMP\gamemodes\new.pwn(601) : error 029: invalid expression, assumed zero
G:\Server GTA SAMP\gamemodes\new.pwn(601) : error 004: function "OnPlayerUpdate" is not implemented
G:\Server GTA SAMP\gamemodes\new.pwn(606) : warning 225: unreachable code
G:\Server GTA SAMP\gamemodes\new.pwn(606) : error 029: invalid expression, assumed zero
G:\Server GTA SAMP\gamemodes\new.pwn(606) : error 004: function "OnPlayerStreamIn" is not implemented
G:\Server GTA SAMP\gamemodes\new.pwn(611) : warning 225: unreachable code
G:\Server GTA SAMP\gamemodes\new.pwn(611) : error 029: invalid expression, assumed zero
G:\Server GTA SAMP\gamemodes\new.pwn(611) : error 004: function "OnPlayerStreamOut" is not implemented
G:\Server GTA SAMP\gamemodes\new.pwn(616) : warning 225: unreachable code
G:\Server GTA SAMP\gamemodes\new.pwn(616) : error 029: invalid expression, assumed zero
G:\Server GTA SAMP\gamemodes\new.pwn(616) : error 004: function "OnVehicleStreamIn" is not implemented
G:\Server GTA SAMP\gamemodes\new.pwn(621) : warning 225: unreachable code
G:\Server GTA SAMP\gamemodes\new.pwn(621) : error 029: invalid expression, assumed zero
G:\Server GTA SAMP\gamemodes\new.pwn(621) : error 004: function "OnVehicleStreamOut" is not implemented
G:\Server GTA SAMP\gamemodes\new.pwn(626) : warning 225: unreachable code
G:\Server GTA SAMP\gamemodes\new.pwn(626) : error 029: invalid expression, assumed zero
G:\Server GTA SAMP\gamemodes\new.pwn(626) : error 004: function "OnDialogResponse" is not implemented
G:\Server GTA SAMP\gamemodes\new.pwn(631) : warning 225: unreachable code
G:\Server GTA SAMP\gamemodes\new.pwn(631) : error 029: invalid expression, assumed zero
G:\Server GTA SAMP\gamemodes\new.pwn(631) : error 004: function "OnPlayerClickPlayer" is not implemented
G:\Server GTA SAMP\gamemodes\new.pwn(636) : warning 225: unreachable code
G:\Server GTA SAMP\gamemodes\new.pwn(636) : error 029: invalid expression, assumed zero
G:\Server GTA SAMP\gamemodes\new.pwn(636) : error 017: undefined symbol "AutoMessage"
G:\Server GTA SAMP\gamemodes\new.pwn(637) : error 029: invalid expression, assumed zero
G:\Server GTA SAMP\gamemodes\new.pwn(637) : error 017: undefined symbol "AutoMessage"
G:\Server GTA SAMP\gamemodes\new.pwn(648) : warning 225: unreachable code
G:\Server GTA SAMP\gamemodes\new.pwn(648) : error 017: undefined symbol "getPlayerIDFromIP"
G:\Server GTA SAMP\gamemodes\new.pwn(661) : error 030: compound statement not closed at the end of file (started at line 573)
Pawn compiler 3.2.3664           Copyright (c) 1997-2006, ITB CompuPhase


21 Errors.

Ma forse ho capito la ragione... Mancano degli include del mio pawno... Poi nn saprei xk siete voi gli esperti...

_________________
Il mio server SA:MP.

HostName: [ITA] IronForge [0.3c]
Address: ironforge.hopto.org:7777
Mode: Sicily's City
Map: San Andreas

Immagine


Top
 E-mail  
 
 Oggetto del messaggio: Re: [HELP]Come faccio?
MessaggioInviato: 19/04/2011, 21:28 
Utente

Iscritto il: 29/03/2011
Messaggi: 170
Favourite GTA: San Andreas

Karma
0


Non connesso
Uppp plsss!!!

_________________
Il mio server SA:MP.

HostName: [ITA] IronForge [0.3c]
Address: ironforge.hopto.org:7777
Mode: Sicily's City
Map: San Andreas

Immagine


Top
 E-mail  
 
 Oggetto del messaggio: Re: [HELP]Come faccio?
MessaggioInviato: 19/04/2011, 21:47 
Avatar utente
Moderatore

Iscritto il: 28/10/2010
Messaggi: 919
Località: Veduggio con Colzano (Milano-Monza)
Favourite GTA: San Andreas
PlayStation Network: Nessuno
Xbox Live: Nessuno
Xfire: barle97

Karma
1


Non connesso
Certo che se non segui quello che ti dicono nessuno ti caga.

_________________
disasm 0xFFFF00 1: LE HANTENNE DEL RUTER SI MVONO DA SL!11!1!!1
[EPD]Giovanni94m: AHSUAHSAUSHAUSAHSAU
disasm 0xFFFF00 1: bella questa asd

[EPD]Giovanni94m: io non riesco a trovare un gioco che ci giocavo su ps1
[EPD]Giovanni94m: non ricordo il nome
[EPD]Giovanni94m: era un omino rosa
[EPD]Giovanni94m: ...
[BCD]barle_the_king: forse cercavi omino bianco [cit. google]
[BCD]barle_the_king: auhsahusuha
[EPD]Giovanni94m: no ahsau
[BCD]barle_the_king: firma duhahudshue

Immagine


Top
 E-mail  
 
Visualizza ultimi messaggi:  Ordina per  
 Pagina 2 di 3 [ 60 messaggi ] 

Vai alla pagina :: « Precedente  1, 2, 3  Prossima »
  Apri un nuovo argomento Rispondi all’argomento

Tutti gli orari sono UTC + 1 ora [ ora legale ]



Chi c’è in linea

Visitano il forum: Bing [Bot] e 9 ospiti


Non puoi aprire nuovi argomenti
Non puoi rispondere negli argomenti
Non puoi modificare i tuoi messaggi
Non puoi cancellare i tuoi messaggi
Non puoi inviare allegati

Cerca per:
Vai a:  
cron