hlmod.hu

Magyar Half-Life Mód közösség!
Pontos idő: 2024.05.23. 15:52



Jelenlévő felhasználók

Jelenleg 328 felhasználó van jelen :: 1 regisztrált, 0 rejtett és 327 vendég

A legtöbb felhasználó (1565 fő) 2020.11.21. 11:26-kor tartózkodott itt.

Regisztrált felhasználók: Bing [Bot] az elmúlt 5 percben aktív felhasználók alapján

Utoljára aktív
Ahhoz hogy lásd ki volt utoljára aktív, be kell jelentkezned.



Az oldal teljeskörű
használatához regisztrálj.

Regisztráció

Kereső


Új téma nyitása  Hozzászólás a témához  [ 8 hozzászólás ] 
Szerző Üzenet
 Hozzászólás témája: special_geoip
HozzászólásElküldve: 2014.04.10. 23:22 
Offline
Őskövület
Avatar

Csatlakozott: 2011.12.28. 00:35
Hozzászólások: 2736
Megköszönt másnak: 56 alkalommal
Megköszönték neki: 275 alkalommal
Hali!

Valaki bele tudná írni az inc-be meg a pluginba a Magyarországot meg a várost?
SMA:
SMA Forráskód: [ Mindet kijelol ]
  1. #include amxmodx
  2. #include special_geoip
  3.  
  4. new const g_Address[] = "24.44.246.135";
  5. new const g_Other[] = "86.124.107.135";
  6.  
  7. public plugin_init()
  8. {
  9. new Country[64], City[64], Region[64], TimeZone[64], PostalCode[64], DmaCode[64], MetroCode[64], NetMask[64], Longitude[64], Latitude[64], CountryCode[64], CountryCode3[64], \
  10. RegionCode[64], Continent[64], ContinentCode[64], Charset[64], AreaCode[64], FormattedDistance[64], Float:Distance = 0.0, Float:ClientDistance = 0.0;
  11.  
  12. register_plugin("Special Geoip", "1.0", "Hattrick (Claudiu HKS)");
  13.  
  14. GeoipInfo(g_Address, GI_Country, Country, charsmax(Country));
  15. GeoipInfo(g_Address, GI_City, City, charsmax(City));
  16. GeoipInfo(g_Address, GI_Region, Region, charsmax(Region));
  17. GeoipInfo(g_Address, GI_TimeZone, TimeZone, charsmax(TimeZone));
  18. GeoipInfo(g_Address, GI_PostalCode, PostalCode, charsmax(PostalCode));
  19. GeoipInfo(g_Address, GI_DmaCode, DmaCode, charsmax(DmaCode));
  20. GeoipInfo(g_Address, GI_MetroCode, MetroCode, charsmax(MetroCode));
  21. GeoipInfo(g_Address, GI_NetMask, NetMask, charsmax(NetMask));
  22. GeoipInfo(g_Address, GI_Longitude, Longitude, charsmax(Longitude));
  23. GeoipInfo(g_Address, GI_Latitude, Latitude, charsmax(Latitude));
  24. GeoipInfo(g_Address, GI_CountryCode, CountryCode, charsmax(CountryCode));
  25. GeoipInfo(g_Address, GI_CountryCode3, CountryCode3, charsmax(CountryCode3));
  26. GeoipInfo(g_Address, GI_RegionCode, RegionCode, charsmax(RegionCode));
  27. GeoipInfo(g_Address, GI_Continent, Continent, charsmax(Continent));
  28. GeoipInfo(g_Address, GI_ContinentCode, ContinentCode, charsmax(ContinentCode));
  29. GeoipInfo(g_Address, GI_Charset, Charset, charsmax(Charset));
  30. GeoipInfo(g_Address, GI_AreaCode, AreaCode, charsmax(AreaCode));
  31.  
  32. server_print("^n----------------------------------------------------------");
  33. server_print("Address: %s", g_Address);
  34. server_print("Country: %s", Country);
  35. server_print("City: %s", City);
  36. server_print("Region: %s", Region);
  37. server_print("Time Zone: %s", TimeZone);
  38. server_print("Postal Code: %s", PostalCode);
  39. server_print("Dma Code: %s", DmaCode);
  40. server_print("Metro Code: %s", MetroCode);
  41. server_print("Area Code: %s", AreaCode);
  42. server_print("Net Mask: %s", NetMask);
  43. server_print("Longitude: %s", Longitude);
  44. server_print("Latitude: %s", Latitude);
  45. server_print("Country Code: %s", CountryCode);
  46. server_print("Country Code 3: %s", CountryCode3);
  47. server_print("Region Code: %s", RegionCode);
  48. server_print("Continent: %s", Continent);
  49. server_print("Continent Code: %s", ContinentCode);
  50. server_print("Charset: %s", Charset);
  51. server_print("----------------------------------------------------------");
  52.  
  53. GeoipInfo(g_Other, GI_Country, Country, charsmax(Country));
  54. GeoipInfo(g_Other, GI_City, City, charsmax(City));
  55. GeoipInfo(g_Other, GI_Region, Region, charsmax(Region));
  56. GeoipInfo(g_Other, GI_TimeZone, TimeZone, charsmax(TimeZone));
  57. GeoipInfo(g_Other, GI_PostalCode, PostalCode, charsmax(PostalCode));
  58. GeoipInfo(g_Other, GI_DmaCode, DmaCode, charsmax(DmaCode));
  59. GeoipInfo(g_Other, GI_MetroCode, MetroCode, charsmax(MetroCode));
  60. GeoipInfo(g_Other, GI_NetMask, NetMask, charsmax(NetMask));
  61. GeoipInfo(g_Other, GI_Longitude, Longitude, charsmax(Longitude));
  62. GeoipInfo(g_Other, GI_Latitude, Latitude, charsmax(Latitude));
  63. GeoipInfo(g_Other, GI_CountryCode, CountryCode, charsmax(CountryCode));
  64. GeoipInfo(g_Other, GI_CountryCode3, CountryCode3, charsmax(CountryCode3));
  65. GeoipInfo(g_Other, GI_RegionCode, RegionCode, charsmax(RegionCode));
  66. GeoipInfo(g_Other, GI_Continent, Continent, charsmax(Continent));
  67. GeoipInfo(g_Other, GI_ContinentCode, ContinentCode, charsmax(ContinentCode));
  68. GeoipInfo(g_Other, GI_Charset, Charset, charsmax(Charset));
  69. GeoipInfo(g_Other, GI_AreaCode, AreaCode, charsmax(AreaCode));
  70.  
  71. server_print("Address: %s", g_Other);
  72. server_print("Country: %s", Country);
  73. server_print("City: %s", City);
  74. server_print("Region: %s", Region);
  75. server_print("Time Zone: %s", TimeZone);
  76. server_print("Postal Code: %s", PostalCode);
  77. server_print("Dma Code: %s", DmaCode);
  78. server_print("Metro Code: %s", MetroCode);
  79. server_print("Area Code: %s", AreaCode);
  80. server_print("Net Mask: %s", NetMask);
  81. server_print("Longitude: %s", Longitude);
  82. server_print("Latitude: %s", Latitude);
  83. server_print("Country Code: %s", CountryCode);
  84. server_print("Country Code 3: %s", CountryCode3);
  85. server_print("Region Code: %s", RegionCode);
  86. server_print("Continent: %s", Continent);
  87. server_print("Continent Code: %s", ContinentCode);
  88. server_print("Charset: %s", Charset);
  89. server_print("----------------------------------------------------------");
  90.  
  91. Distance = GeoipDistance(g_Address, g_Other);
  92. GeoipFloatCommas(Distance, FormattedDistance, charsmax(FormattedDistance));
  93. Distance != 0.0 ? server_print("Miles: %s", FormattedDistance) : server_print("Miles: %s", "N/A");
  94.  
  95. Distance = GeoipDistance(g_Address, g_Other, false);
  96. GeoipFloatCommas(Distance, FormattedDistance, charsmax(FormattedDistance));
  97. Distance != 0.0 ? server_print("Kilometers: %s", FormattedDistance) : server_print("Kilometers: %s", "N/A");
  98.  
  99. ClientDistance = GeoipClientDistance(0);
  100. GeoipFloatCommas(ClientDistance, FormattedDistance, charsmax(FormattedDistance));
  101. ClientDistance != 0.0 ? server_print("Miles between client zero and server: %s", FormattedDistance) : server_print("Miles between client zero and server: %s", "N/A");
  102.  
  103. ClientDistance = GeoipClientDistance(0, false);
  104. GeoipFloatCommas(ClientDistance, FormattedDistance, charsmax(FormattedDistance));
  105. ClientDistance != 0.0 ? server_print("Kilometers between client zero and server: %s^n", FormattedDistance) : server_print("Kilometers between client zero and server: %s^n", "N/A");
  106. }


INC:
SMA Forráskód: [ Mindet kijelol ]
  1. /** Special Geoip v1.0.0.1
  2.  * by Hattrick (Claudiu HKS)
  3.  */
  4.  
  5. #if defined _special_geoip_included
  6. #endinput
  7. #endif
  8.  
  9. #define _special_geoip_included
  10.  
  11. #if AMXX_VERSION_NUM >= 175
  12. #pragma reqlib special_geoip
  13.  
  14. #if !defined AMXMODX_NOAUTOLOAD
  15. #pragma loadlib special_geoip
  16. #endif
  17. #else
  18. #pragma library special_geoip
  19. #endif
  20.  
  21. /** Util functions.
  22.  */
  23. stock AddCommas(Num, Output[], Len)
  24. {
  25. static Tmp[16], OutputPos = 0, NumPos = 0, NumLen = 0;
  26.  
  27. OutputPos = NumPos = 0;
  28.  
  29. if (Num < 0)
  30. {
  31. Output[OutputPos++] = '-';
  32.  
  33. Num = abs(Num);
  34. }
  35.  
  36. NumLen = num_to_str(Num, Tmp, charsmax(Tmp));
  37.  
  38. if (NumLen <= 3)
  39. OutputPos += copy(Output[OutputPos], Len, Tmp);
  40.  
  41. else
  42. {
  43. while (NumPos < NumLen && OutputPos < Len)
  44. {
  45. Output[OutputPos++] = Tmp[NumPos++];
  46.  
  47. if (NumLen - NumPos && !((NumLen - NumPos) % 3))
  48. Output[OutputPos++] = ',';
  49. }
  50.  
  51. Output[OutputPos] = '^0';
  52. }
  53. }
  54.  
  55. stock GeoipStripAddress(Address[])
  56. {
  57. static Iterator = 0;
  58.  
  59. for (Iterator = strlen(Address) - 1; Iterator >= 0; Iterator--)
  60. {
  61. if (Address[Iterator] == ':')
  62. {
  63. Address[Iterator] = '^0';
  64.  
  65. break;
  66. }
  67. }
  68. }
  69.  
  70. stock GeoipFloatCommas(Float:Value, Buffer[], Size)
  71. {
  72. AddCommas(floatround(Value), Buffer, Size);
  73. }
  74.  
  75. stock GeoipNumCommas(Value, Buffer[], Size)
  76. {
  77. AddCommas(Value, Buffer, Size);
  78. }
  79.  
  80. /** Math predefinitions.
  81.  */
  82. #define F_Cos floatcos
  83. #define F_Sin floatsin
  84.  
  85. stock Float:F_ACos(Float:Value)
  86. {
  87. return floatacos(Value, radian);
  88. }
  89.  
  90. stock Float:F_ASin(Float:Value)
  91. {
  92. return floatasin(Value, radian);
  93. }
  94.  
  95. /** Defines Geoip charsets.
  96.  */
  97. enum GeoCharset
  98. {
  99. GC_ISO8859 = 0, // Normal characters.
  100. GC_UTF8 = 1 // Special characters.
  101. };
  102.  
  103. /** Defines Geoip informations.
  104.  */
  105. enum GeoInfo
  106. {
  107. /** Some examples below.
  108.   */
  109. GI_Country = 0, // Romania United States
  110. GI_CountryCode = 1, // RO US
  111. GI_CountryCode3 = 2, // ROU USA
  112. GI_Region = 3, // Cluj New York
  113. GI_TimeZone = 4, // Europe/Bucharest America/New_York
  114. GI_City = 5, // Turda New Rochelle
  115. GI_ContinentCode = 6, // EU NA
  116. GI_RegionCode = 7, // 13 NY
  117. GI_Latitude = 8, // 46.566700 40.911499
  118. GI_Longitude = 9, // 23.783300 -73.782303
  119. GI_AreaCode = 10, // 0 914
  120. GI_PostalCode = 11, // N/A N/A
  121. GI_MetroCode = 12, // 0 501
  122. GI_DmaCode = 13, // 0 501
  123. GI_NetMask = 14, // 21 22
  124. GI_Continent = 15, // Europe North America
  125. GI_Charset = 16 // 1 1
  126. };
  127.  
  128. /** Retrieves a result.
  129.  *
  130.  * @param Address The IP address to retrieve information from.
  131.  * @param Info The information to retrieve.
  132.  * @param Buffer The variable to store result in.
  133.  * @param Size The variable that represents the buffer size.
  134.  *
  135.  * @return True if success.
  136.  */
  137. native /* bool */ bool:GeoipInfo(const Address[], GeoInfo:Info, Buffer[], Size);
  138.  
  139. /** Changes charset.
  140.  *
  141.  * @param Charset The charset to set.
  142.  *
  143.  * @return True.
  144.  */
  145. native /* void */ GeoipCharset(GeoCharset:Charset);
  146.  
  147. /** Retrieves distance.
  148.  *
  149.  * Thanks Arkshine (@Forums.AlliedMods.Com) for this.
  150.  * 0.017453 means PI / 180U and 3959U and 6371U means Earth radius both for imperial and metrical measurement systems.
  151.  *
  152.  * @param Address The first IP address.
  153.  * @param Other The second IP address.
  154.  * @param Imperial Whether or not to use imperial measurement system.
  155.  *
  156.  * @return The distance, if any. Otherwise, zero.
  157.  */
  158. stock /* long double */ Float:GeoipDistance(const Address[], const Other[], bool:Imperial = true)
  159. {
  160. static AddressLatitude[16], AddressLongitude[16], OtherLatitude[16], OtherLongitude[16], \
  161. Float:fAddressLatitude = 0.0, Float:fAddressLongitude = 0.0, Float:fOtherLatitude = 0.0, Float:fOtherLongitude = 0.0;
  162.  
  163. if (GeoipInfo(Address, GI_Latitude, AddressLatitude, charsmax(AddressLatitude)) && GeoipInfo(Other, GI_Latitude, OtherLatitude, charsmax(OtherLatitude)) && \
  164. GeoipInfo(Address, GI_Longitude, AddressLongitude, charsmax(AddressLongitude)) && GeoipInfo(Other, GI_Longitude, OtherLongitude, charsmax(OtherLongitude)))
  165. {
  166. fAddressLatitude = str_to_float(AddressLatitude) * 0.017453, fOtherLatitude = str_to_float(OtherLatitude) * 0.017453;
  167. fAddressLongitude = str_to_float(AddressLongitude) * 0.017453, fOtherLongitude = str_to_float(OtherLongitude) * 0.017453;
  168.  
  169. return Imperial ? \
  170. F_ACos(F_Sin(fAddressLatitude) * F_Sin(fOtherLatitude) + F_Cos(fAddressLatitude) * F_Cos(fOtherLatitude) * F_Cos(fOtherLongitude - fAddressLongitude)) * 3959.0 : \
  171. F_ACos(F_Sin(fAddressLatitude) * F_Sin(fOtherLatitude) + F_Cos(fAddressLatitude) * F_Cos(fOtherLatitude) * F_Cos(fOtherLongitude - fAddressLongitude)) * 6371.0;
  172. }
  173.  
  174. return 0.0;
  175. }
  176.  
  177. /** Retrieves distance between client and server.
  178.  *
  179.  * Experimental function. This will only work whether server's IP address is the real one (not the local one).
  180.  *
  181.  * @param Client Client to compare distance with.
  182.  * @param Imperial Whether or not to use imperial measurement system.
  183.  *
  184.  * @return The distance, if any. Otherwise, zero.
  185.  */
  186. stock /* long double */ Float:GeoipClientDistance(Client, bool:Imperial = true)
  187. {
  188. static ServerAddress[64], ClientAddress[64], \
  189. Float:Distance = 0.0;
  190.  
  191. if (!is_user_connected(Client) || is_user_bot(Client))
  192. {
  193. return 0.0;
  194. }
  195.  
  196. get_cvar_string("net_address", ServerAddress, charsmax(ServerAddress));
  197.  
  198. GeoipStripAddress(ServerAddress);
  199.  
  200. get_user_ip(Client, ClientAddress, charsmax(ClientAddress), 1);
  201.  
  202. Distance = GeoipDistance(ClientAddress, ServerAddress, Imperial);
  203.  
  204. if (Distance == 0.0)
  205. {
  206. get_cvar_string("ip", ServerAddress, charsmax(ServerAddress));
  207.  
  208. GeoipStripAddress(ServerAddress);
  209.  
  210. Distance = GeoipDistance(ClientAddress, ServerAddress, Imperial);
  211. }
  212.  
  213. return Distance;
  214. }


Előre is köszi.

_________________
****


Hozzászólás jelentése
Vissza a tetejére
   
 Hozzászólás témája: Re: special_geoip
HozzászólásElküldve: 2014.04.11. 20:42 
Offline
Őstag

Csatlakozott: 2011.06.12. 20:51
Hozzászólások: 1089
Megköszönt másnak: 3 alkalommal
Megköszönték neki: 44 alkalommal
ha magyar ip-t adsz meg akkor megfogja szerintem találni de ha nem akkor meg a modullal van a baj nem az inc-el és ezzel a pluginnal

_________________
[img]semmi[/img]


Hozzászólás jelentése
Vissza a tetejére
   
 Hozzászólás témája: Re: special_geoip
HozzászólásElküldve: 2014.04.11. 22:34 
Offline
Őskövület
Avatar

Csatlakozott: 2011.12.28. 00:35
Hozzászólások: 2736
Megköszönt másnak: 56 alkalommal
Megköszönték neki: 275 alkalommal
És adjam meg az én ip-met vagy mi? Mert nem értem ezt a geoip-t :D

Hogy hogy vissza jöttél újra? :dd

_________________
****


Hozzászólás jelentése
Vissza a tetejére
   
 Hozzászólás témája: Re: special_geoip
HozzászólásElküldve: 2014.04.11. 22:43 
Offline
Őstag

Csatlakozott: 2011.06.12. 20:51
Hozzászólások: 1089
Megköszönt másnak: 3 alkalommal
Megköszönték neki: 44 alkalommal
pixxa112 írta:
És adjam meg az én ip-met vagy mi? Mert nem értem ezt a geoip-t :D

Hogy hogy vissza jöttél újra? :dd


na szóval nem tudom mit akarsz gondolom nem tudod mit csinál a plugin elmagyarázom aztán mond el h mit nem értesz

a plugin a két ipről kigyűjt információkat és printeli chatbe(vagy nem tudom hova nem emlékszem mi az a server_print)
majd ezek után kiszámolja hogy mennyi a 2ip közti távolság és kiíirja

(jelenleg ezt a 2ip amivel foglalkozik)
SMA Forráskód: [ Mindet kijelol ]
  1. new const g_Address[] = "24.44.246.135";
  2. new const g_Other[] = "86.124.107.135";


ui.: eddig is itt voltam néha csak nem nagyon irogattam

_________________
[img]semmi[/img]


Hozzászólás jelentése
Vissza a tetejére
   
 Hozzászólás témája: Re: special_geoip
HozzászólásElküldve: 2014.04.11. 22:49 
Offline
Őskövület
Avatar

Csatlakozott: 2011.12.28. 00:35
Hozzászólások: 2736
Megköszönt másnak: 56 alkalommal
Megköszönték neki: 275 alkalommal
fuck604 írta:
na szóval nem tudom mit akarsz gondolom nem tudod mit csinál a plugin elmagyarázom aztán mond el h mit nem értesz

a plugin a két ipről kigyűjt információkat és printeli chatbe(vagy nem tudom hova nem emlékszem mi az a server_print)
majd ezek után kiszámolja hogy mennyi a 2ip közti távolság és kiíirja

(jelenleg ezt a 2ip amivel foglalkozik)
SMA Forráskód: [ Mindet kijelol ]
  1. new const g_Address[] = "24.44.246.135";
  2. new const g_Other[] = "86.124.107.135";


ui.: eddig is itt voltam néha csak nem nagyon irogattam


Hát én annyit akarok elérni hogy van egy spec információ plugint, amikor specbe nézed akkor kiírná az országot meg a várost.
De mindenkinek error-t ír az országra is meg a városra is.
És akkor milyen ip-t írjak be? Mert azt nem vágom..

_________________
****


Hozzászólás jelentése
Vissza a tetejére
   
 Hozzászólás témája: Re: special_geoip
HozzászólásElküldve: 2014.04.11. 22:57 
Offline
Őstag

Csatlakozott: 2011.06.12. 20:51
Hozzászólások: 1089
Megköszönt másnak: 3 alkalommal
Megköszönték neki: 44 alkalommal
de mi köze annak ehhez a pluginhoz? akkor küld el azt

_________________
[img]semmi[/img]


Hozzászólás jelentése
Vissza a tetejére
   
 Hozzászólás témája: Re: special_geoip
HozzászólásElküldve: 2014.04.11. 23:04 
Offline
Őskövület
Avatar

Csatlakozott: 2011.12.28. 00:35
Hozzászólások: 2736
Megköszönt másnak: 56 alkalommal
Megköszönték neki: 275 alkalommal
fuck604 írta:
de mi köze annak ehhez a pluginhoz? akkor küld el azt


Nem tudom, csak azt is be linkeltem, de az inc a fontosabb.

Tessék:
SMA Forráskód: [ Mindet kijelol ]
  1. #include <amxmodx>
  2. #include <amxmisc>
  3. #include <fakemeta>
  4. #include <geoip>
  5. #include <hamsandwich>
  6.  
  7. new const PLUGIN[] = "Surf Main Points";
  8. new const VERSION[] = "1.0";
  9. new const AUTHOR[] = "Hattrick";
  10.  
  11. const PEV_SPEC_TARGET = pev_iuser2;
  12.  
  13. new g_HudSterVVVXXXxyz;
  14.  
  15. public plugin_init()
  16. {
  17. register_plugin(PLUGIN, VERSION, AUTHOR);
  18. register_event("ResetHUD", "event_ResetHud", "be");
  19. RegisterHam(Ham_Spawn, "player", "ham_PlayerSpawned_Post", 1);
  20.  
  21. g_HudSterVVVXXXxyz = CreateHudSyncObj();
  22. }
  23.  
  24. public ham_PlayerSpawned_Post(id)
  25. {
  26. if (is_user_connected(id) && is_user_alive(id))
  27. {
  28. set_task(1.0, "ShowHud", id, _, _, "b");
  29. }
  30. }
  31.  
  32. public event_ResetHud(id)
  33. {
  34. ShowHud(id);
  35. }
  36.  
  37. public ShowHud(id)
  38. {
  39. if (is_user_connected(id) && is_user_alive(id) && (get_user_team(id) == 1 || get_user_team(id) == 2))
  40. {
  41. set_hudmessage(0, 255, 255, 0.5, 0.9, 0, 0.5, 15.0, 2.0, 2.0, -1);
  42. ShowSyncHudMsg(id, g_HudSterVVVXXXxyz, "Élet: %d", get_user_health(id));
  43. }
  44. else
  45. {
  46. static szIP[ 16 ], szCountry[ 32 ];
  47. get_user_ip( id, szIP, charsmax( szIP ) );
  48. geoip_country( szIP, szCountry, charsmax( szCountry ) );
  49. new idSpec;
  50. new iPlayerName[32];
  51. idSpec = pev(id, PEV_SPEC_TARGET);
  52. get_user_name(idSpec, iPlayerName, 31);
  53. set_hudmessage(0, 255, 255, 0.5, 0.7, 0, 0.5, 15.0, 2.0, 2.0, -1);
  54. ShowSyncHudMsg(id, g_HudSterVVVXXXxyz, "Akit Nézel: %s - Élet: %d - Ország: %s", iPlayerName, get_user_health(idSpec),szCountry);
  55. }
  56. }

_________________
****


Hozzászólás jelentése
Vissza a tetejére
   
 Hozzászólás témája: Re: special_geoip
HozzászólásElküldve: 2014.04.12. 10:31 
Offline
Őstag

Csatlakozott: 2011.06.12. 20:51
Hozzászólások: 1089
Megköszönt másnak: 3 alkalommal
Megköszönték neki: 44 alkalommal
ez látszólag hibátlan nem tudom mi lehet a hiba:/

_________________
[img]semmi[/img]


Hozzászólás jelentése
Vissza a tetejére
   
Hozzászólások megjelenítése:  Rendezés  
Új téma nyitása  Hozzászólás a témához  [ 8 hozzászólás ] 


Ki van itt

Jelenlévő fórumozók: nincs regisztrált felhasználó valamint 95 vendég


Nyithatsz új témákat ebben a fórumban.
Válaszolhatsz egy témára ebben a fórumban.
Nem szerkesztheted a hozzászólásaidat ebben a fórumban.
Nem törölheted a hozzászólásaidat ebben a fórumban.
Nem küldhetsz csatolmányokat ebben a fórumban.

Keresés:
Ugrás:  
Powered by phpBB® Forum Software © phpBB Limited
Magyar fordítás © Magyar phpBB Közösség
Portal: Kiss Portal Extension © Michael O'Toole