Üzenetek megjelenítése

Ez a szekció lehetővé teszi a felhasználó által írt összes hozzászólás megtekintését. Vedd figyelembe, hogy csak azokba a fórumokba írt hozzászólásokat látod, amelyekhez hozzáférésed van.


Témák - shadee

Oldalak: 1 2 3 [4] 5 6 ... 13
46
Segítségkérés / TrafiPax
« Dátum: 2012. November 03. - 19:55:33 »
üdv,van nekem egy trafi rendszerem,és hogy tudnám megcsinálni hogy IG tudjak lerakni trafit?
 
/* Automatic Speeding Camera system, Created by FusiouS
 
**************************
Version: 1.0, Release 1
SA-MP Version: 0.3c
Credits for speeding cam system: FusiouS
Special thanks & Credits for testing speedometer:
**************************
Features:
- Checks player speed when he is moving with vehicle
- If vehicle speed is over specified speed limit, speeding camera give\'s fine automatically
- All camera\'s speed limit can be decided: 1 can be for example 40mp/h, one 60mp/h one 80mp/h and so on..
- Easy camera creating system
 
TERMS OF USE: You are free to modify this script for your own use.
Do not remove credits or re-release this as your own.
*/
 
// Required Include
#include <a_samp>
// New stuff
new UpdateSeconds = 1;
new MaxObjects = 20;
 
public OnFilterScriptInit() {
print(\"\\nAutomatic Speeding Camera System loaded!\");
print(\"Version: 1.0, Release 1\");
print(\"Credits: FusiouS\\n\");
SetTimer(\"UpdateSpeed\", UpdateSeconds*1000, 1);
// Camera Objects
/*          modelid   X Coord Y Coord  Z Coord      RotateX RotateY  RotateZ */
CreateObject(1616, 1451.7249, -1726.3785, 16.0000, 0.0000, 0.0000, -173.0000); //LSPD NEAR
CreateObject(1616, 1350.4246, -1131.2245, 27.0000, -4.0000, 4.0000, -209.0000); //LS AMMU NEAR
CreateObject(1616, 790.7557, -1776.3378, 21.0000, 0.0000, 0.0000, -135.0000); //LS BEACH
CreateObject(1616, 681.2205, -1139.5607, 22.0000, 0.0000, 0.0000, 251.0000); //NORTH LS
CreateObject(1616, 1797.2307, -2678.8931, 10.0000, 0.0000, 0.0000, 47.0000); //NEAR LS AIRPORT TUNNEL
CreateObject(1616, 2879.8845, -1295.8997, 15.0000, 0.0000, 0.0000, 91.0000); //
CreateObject(1616, 2139.7844, -1534.0510, 10.0000, 0.0000, 0.0000, 207.0000); //MOTORWAY, RAMP TO LS 2
CreateObject(1616, 2263.1226, -1741.4176, 22.0000, 0.0000, 0.0000, 236.0000); //NEAR LS GYM 2
CreateObject(1616, 1073.4392, -1390.1713, 18.0000, 0.0000, 0.0000, 200.0000); //NEAR ALL SAINTS HOSPITAL
CreateObject(1616, -128.4532, -1318.2719, 6.0000, 0.0000, 0.0000, 76.0000); // EXIT OF LOS SANTOS
CreateObject(1616, 1857.1750, -1477.2706, 17.0000, 0.0000, 0.0000, 113.0000); // BRIDGE UPPER HIGHWAY
}
public OnFilterScriptExit() {
print(\"\\nAutomatic Speeding Camera System un-loading!\");
print(\"Successfully un-loaded!\");
}
forward UpdateSpeed(playerid);
enum SavePlayerPosEnum {
Float:LastX,
Float:LastY,
Float:LastZ
}
#define COLOR_YELLOW 0xFFFF00AA
#define SLOTS 200
#define COLOR_LIGHTRED 0xFB2304FF
#define COLOR_PURPLE 0xC2A2DAAA
new objectcreated;
new SavePlayerPos[sLOTS][savePlayerPosEnum];
new distance1[MAX_PLAYERS];
 
public UpdateSpeed(playerid)
{
new Float:x,Float:y,Float:z;
new Float:distance,value;
for(new i=0; i<SLOTS; i++)
{
if(IsPlayerConnected(i))
{
   GetPlayerPos(i, x, y, z);
   distance = floatsqroot(floatpower(floatabs(floatsub(x,SavePlayerPos[LastX])),2)+floatpower(floatabs(floatsub(y,SavePlayerPos[LastY])),2)+floatpower(floatabs(floatsub(z,SavePlayerPos[LastZ])),2));
          // Distance: meters in the last second
   value = floatround(distance * 3600);
   if(UpdateSeconds > 1)
   {
      value = floatround(value / UpdateSeconds);
   }
   distance1 = floatround(value/1600);
   SavePlayerPos[LastX] = x;
   SavePlayerPos[LastY] = y;
   SavePlayerPos[LastZ] = z;
 
   // Speeding controllers
   /*                CoordX    CoordY   CoorZ  Radius Speedlimit (MP/H)    */
           AddSpeedingCam(i, 1350.9496, -1112.5031, 28.0000, 20, 80);
            AddSpeedingCam(i, 790.7557, -1776.3378, 21.0000, 20, 80);
            AddSpeedingCam(i, 681.2205, -1139.5607, 22.0000, 20, 80);
            AddSpeedingCam(i, 1797.2307, -2678.8931, 10.0000, 20, 80);
   AddSpeedingCam(i, 2879.8845, -1295.8997, 15.0000, 20, 80);
      AddSpeedingCam(i, 2263.1226, -1741.4176, 22.0000, 20, 80);
      AddSpeedingCam(i, 1073.4392, -1390.1713, 18.0000, 20, 80);
      AddSpeedingCam(i, -128.4532, -1318.2719, 6.0000, 20, 80);
      AddSpeedingCam(i, 1857.1750, -1477.2706, 17.0000, 20, 80);
}
}
}
IsPlayerInCircle(playerid,Float:x,Float:y,radius)
{
    if(GetPlayerDistanceToPoint(playerid,Float:x,Float:y) < radius)
    {
       return 1;
    }
    return 0;
}
GetPlayerDistanceToPoint(playerid,Float:x,Float:y)
{
    new Float:x1,Float:y1,Float:z1; GetPlayerPos(playerid,x1,y1,z1);
    new Float:tmpdis = floatsqroot(floatpower(floatabs(floatsub(x,x1)),2)+
    floatpower(floatabs(floatsub(y,y1)),2));
    return floatround(tmpdis);
}
stock AddSpeedingCam(playerid, Float:xx, Float:yy, Float:zz, radius, speed)
{
new fine[MAX_PLAYERS];
new str[256];
if(objectcreated!=MaxObjects)
     {
       CreateObject(playerid, xx, yy, zz, 0.0, 0.0, 10);
        objectcreated++;
     }
     if((distance1[playerid])>speed)
     {
if(IsPlayerInCircle(playerid, xx, yy, radius)  && GetPlayerState(playerid)== PLAYER_STATE_DRIVER)
{
   fine[playerid]=((distance1[playerid]*17/10)-speed);
   GivePlayerMoney(playerid, -20000);
            SendClientMessage(playerid, COLOR_LIGHTRED, \"Megbûntettek a rendõrök mivel túl gyorsan hajtottál a megengedetnél!\");
   format(str,sizeof(str), \"[Trafipax]Mebûntettek 20,000Ft-ra.\",speed, distance1[playerid] ,fine[playerid]);
            GameTextForPlayer(playerid, \"~r~Elkapott egy trafipax!\", 5000, 3);
            PlayerPlaySound(playerid, 1132, 0.0, 0.0, 0.0);
   SendClientMessage(playerid, COLOR_YELLOW, str);
}
}
}

47
Segítségkérés / Skin levédése
« Dátum: 2012. November 03. - 17:49:06 »
hogyan lehetskint levédeni?melyik függvény alatt?

48
Segítségkérés / Dialogba név gond
« Dátum: 2012. November 01. - 20:51:34 »
helló,ha egy játékos beír egy nevet az inputos boxba
akkor ez történjen:
PlayerInfo[játékos ID--je][pMemBer] = 1;
és hogy kérdem le azt h mit írt be a boxba?nemtudok rájönni

49
Beszélgetés / Kinek van már jogsija? :D
« Dátum: 2012. Október 30. - 20:43:41 »
Üdv aztszeretném kérdezni kinek van már jogosítványa és hozzá motorja/kocsija
Nekem:
Jogosítvány:Van
Kategória:M
Motorom:Honda Dio
CM3:50
Kép:((netrõl van,de ugyan ilyen,csak van rajta 1-2 karc)):http://img.jofogas.hu/images/19/1988699102.jpg
ilyesmi,csak a burkolata más,az egész szürke,nemrég vettük 50ezer Ft-ért

50
Segítségkérés / dini_Get használata,stb..
« Dátum: 2012. Október 30. - 15:53:05 »
üdv,akarok csinálni egy játékbeli autó üzenetet változtató szöveget,magyarul autó üzenetet.
és úgy akarom megcsinni hogy egy fájlba van benne a cucc.
és akkor a játékba lenne egy ilyen parancs: /autoüzenet [sOR][szöveg]
strcmp-be
és ha sor-hoz 1-et ír akkor az elsõ sort töröli és a helyére a szöveg értékét adja meg,és ezt nemértem hogy tudnám megcsinálni,Köszönöm elõre is.

51
Kérdések, Segítség / SMF karakterlánc hiba
« Dátum: 2012. Október 30. - 13:32:12 »
üdv,feltelepítettem az smf-et és É vagy bármilyen Ékezetes betûre ?-et ír
web:syberrpg.wbh.hu

52
Kérdések, Segítség / UCP Config hiba
« Dátum: 2012. Október 28. - 22:25:11 »
üdv,elkezdtem editelni egy ucpt,és ezt írja a bejelentkezés alatt:
Warning: mysql_connect(): Lost connection to MySQL server at \'reading initial communication packet\', system error: 111 in /storage/hosting/c/cooweer/config.php on line 3 \'Nincs kapcsolat a szerverrel\'
minden adat jól van megadva.
Config.php:
 
<?php 
    $connect = mysql_connect(\"\", \"\", \"\") or die(\"Nincs kapcsolat a szerverrel\"); //connecting to mysql, change setting if you have to
    mysql_select_db(\"\") or die (\"Nem lehet csatlakozni az adatbázishoz!\"); //selecting database, change name to your database name!
     
    function sanitize($string) //function for sanitize from xss and mysql and csrf... Thanks to XFlawless
    { 
        $string = strip_tags($string); 
        $string = mysql_real_escape_string($string); 
        return $string; 
    }
?>

 
adatokat természetesen kivettem most belõle
megoldottam,csak most az echoval nem akarok jóba lenni,azt akarom megcsinni ha pl nemjó a jelszó,akkor a felhasználónév felett, írja,és nem feketén alul ezt:
Warning: session_start(): open(/storage/hosting/c/cooweer/tmp/sessions//sess_j3igtc1p7bp06d9dhpghho98l5, O_RDWR) failed: No such file or directory (2) in /storage/hosting/c/cooweer/login.php on line 40 Hibás Jelszó!

53
Kérdések, Segítség / Css Kérés
« Dátum: 2012. Október 28. - 21:30:02 »
megtaláltam,kösz

54
Off Telep / Melyik lesz hamarabb?
« Dátum: 2012. Október 26. - 23:10:41 »
Szerintetek melyik lesz hamarabb?
1:6-os metró befejezése
2:Világ vége

55
Idézetet írta: petata date=1350929305\" data-ipsquote-contentapp=\"forums\" data-ipsquote-contenttype=\"forums\" data-ipsquote-contentid=\"28909\" data-ipsquote-contentclass=\"forums_Topic
Szerintem nem az áraknak kell a legnagyobb gondnak lenniük. Azt ráérsz megtervezni, de ha nagyon pontosan akarod, nézz körülbelüli magyar ingatlanárakat - majd váltsd át a forintot dollárba...



az nem reális mivel számold ki .300
Mert ez reális? xD
 

[/quote]
Spoiler for Off:
Ha már RP,azt a valóságot ábrázolja,Magyarul mindennek reálisnak kell lenni a valósággal,még a pisilés is...

56
Hangszerek és előadók / Pár darab jó rap szám :)[LINK]
« Dátum: 2012. Október 22. - 13:20:40 »
üdv,nekem bejönnek ez a pár szám,de nem mindet linkeltem :D
http://www.youtube.com/watch?v=PrjXJmrW-2E
 

 

http://www.youtube.com/watch?v=4T_Zjg8qNSI
 

 

 

 

 

 

ti is linkeljetek párat :D

57
Segítségkérés / Szerver Router mellet
« Dátum: 2012. Október 21. - 12:53:29 »
üdv,valamiért ha portot akarok nyitni akkor ezt a hibát kapom:
 
The specified port(s) are being used by other configurations. Please check your configurations of Remote Management, Port forwarding, Port Triggering, UPnP Port Mapping table, RIP, and Internet connection type

 
mi lehet a baja?

58
Segítségkérés / AfterLife Pluginjai
« Dátum: 2012. Október 20. - 12:20:56 »
üdv,afterlife módba egy error sincs,se semmi.
2Db plugin:Streamer,és sscanf
milyen plugin kell még hozzá?
mivel azt írja hogy a mód nem található,de megvan meg minden,pluginok is

59
RP/RPG kérések / Szeró kifagyás,de mégsem!
« Dátum: 2012. Október 19. - 19:03:39 »
Üdv,elkezdtem írni 1 módot,AMF reg rendszerével kezdtem,az müxik is
bejelentkezik stb.le is spawnol,de egy baj van
sima chatba írok vmit,vagy esetleg parancsot írok be,nemjó
rconba is belépnék,semmi,semmit nem reagál
mi lehet a baja?

60
Segítségkérés / Yini problematika
« Dátum: 2012. Október 13. - 00:38:27 »
üdv betettem amf házrendszerét,lecompylezem ezt írja:
 
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\internal\\y_version.inc(193) : warning 219: local variable \"data\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\internal\\y_version.inc(203) : warning 219: local variable \"pos\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\internal\\y_version.inc(220) : warning 219: local variable \"last\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_amx.inc(135) : warning 219: local variable \"addr\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_amx.inc(136) : warning 219: local variable \"data\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_amx.inc(267) : warning 219: local variable \"addr\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_amx.inc(892) : warning 219: local variable \"addr\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_amx.inc(914) : warning 219: local variable \"addr\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_amx.inc(936) : warning 219: local variable \"addr\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_amx.inc(956) : warning 219: local variable \"addr\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_amx.inc(963) : warning 219: local variable \"addr\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_amx.inc(988) : warning 219: local variable \"addr\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_utils.inc(249) : warning 219: local variable \"pos\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_utils.inc(430) : warning 219: local variable \"addr\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_bit.inc(327) : warning 219: local variable \"data\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_bit.inc(358) : warning 219: local variable \"data\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_scripting.inc(86) : warning 219: local variable \"addr\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_scripting.inc(109) : warning 219: local variable \"addr\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_scripting.inc(148) : warning 219: local variable \"addr\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_scripting.inc(187) : warning 219: local variable \"addr\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_scripting.inc(298) : warning 219: local variable \"pos\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_scripting.inc(299) : warning 219: local variable \"addr\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_scripting.inc(451) : warning 219: local variable \"pos\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_scripting.inc(452) : warning 219: local variable \"addr\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_scripting.inc(522) : warning 219: local variable \"addr\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_scripting.inc(570) : warning 219: local variable \"pos\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_scripting.inc(571) : warning 219: local variable \"addr\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_scripting.inc(621) : warning 219: local variable \"pos\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_scripting.inc(622) : warning 219: local variable \"addr\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_inline.inc(198) : warning 219: local variable \"data\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_inline.inc(216) : warning 219: local variable \"pos\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_inline.inc(249) : warning 219: local variable \"data\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_inline.inc(297) : warning 219: local variable \"data\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_inline.inc(343) : error 010: invalid function or declaration
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_inline.inc(360) : error 010: invalid function or declaration
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_inline.inc(363) : error 010: invalid function or declaration
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_inline.inc(366) : error 010: invalid function or declaration
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_inline.inc(399) : error 010: invalid function or declaration
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_inline.inc(401) : error 010: invalid function or declaration
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_inline.inc(405) : error 010: invalid function or declaration
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_inline.inc(409) : error 054: unmatched closing brace (\"}\")
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_inline.inc(411) : error 010: invalid function or declaration
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_inline.inc(415) : error 010: invalid function or declaration
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_inline.inc(431) : error 054: unmatched closing brace (\"}\")
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_inline.inc(433) : error 010: invalid function or declaration
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_ini.inc(834) : warning 219: local variable \"data\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_ini.inc(954) : warning 219: local variable \"data\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_ini.inc(1048) : warning 219: local variable \"data\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_ini.inc(1067) : warning 219: local variable \"data\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_ini.inc(1089) : warning 219: local variable \"data\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_ini.inc(1121) : warning 219: local variable \"data\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_ini.inc(1157) : warning 219: local variable \"data\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\YSI\\y_ini.inc(1185) : warning 219: local variable \"data\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\pawno\\include\\zcmd.inc(90) : warning 219: local variable \"pos\" shadows a variable at a preceding level
C:\\Users\\Dawee\\Desktop\\CUCC\\a\\IRP\\filterscripts\\aHouse.pwn(683) : warning 203: symbol is never used: \"sSearch\"
Pawn compiler 3.2.3664           Copyright (c) 1997-2006, ITB CompuPhase
 
12 Errors.

 
és nem bírok rájönni

Oldalak: 1 2 3 [4] 5 6 ... 13
SimplePortal 2.3.7 © 2008-2024, SimplePortal