hlmod.hu

Magyar Half-Life Mód közösség!
Pontos idő: 2024.06.04. 05:54



Jelenlévő felhasználók

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

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

Regisztrált felhasználók: nincs regisztrált felhasználó 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  [ 5 hozzászólás ] 
Szerző Üzenet
 Hozzászólás témája: rtv
HozzászólásElküldve: 2013.05.08. 15:22 
Offline
Nagyúr
Avatar

Csatlakozott: 2013.03.28. 20:32
Hozzászólások: 561
Megköszönt másnak: 59 alkalommal
Megköszönték neki: 56 alkalommal
SMA Forráskód: [ Mindet kijelol ]
  1. /*
  2. * Made by DA
  3. *
  4. * Description:
  5. * This plugin allows the players on your server to vote for a mapvoting.
  6. * The players can say in the chat "/rockthevote", "rockthevote" or "rtv" to vote for the vote.
  7. * The maps will be automaticle loaded from the maps.ini (if it exists) or from the mapcycle.txt.
  8. *
  9. *
  10. * Installation:
  11. * 1. Download the rockthevote_custom.sma and compile it on your local machine.
  12. * 2. Put the rockthevote_custom.amxx in your plugins folder.
  13. * 3. Add at the end from the plugins.ini this line: rockthevote_custom.amxx
  14. * 4. Open your amxx.cfg (mod/addons/amxmodx/configs/) and add the cvar's.
  15. * 5. Restart or change the map from your server.
  16. *
  17. *
  18. * CVAR's:
  19. * amx_timevote number - Default 5 - After 5 MINUTES (Default) is rockthevote allowed.
  20. * amx_howmanypercentage float - Default 0.30 - When 30% (Default) of the players said rockthevote then comes the mapvote.
  21. * amx_howmanyvotes number - Default 8 - When 8 (default) players said rockthevote then comes the mapvote.
  22. * amx_rocktime time - Default 10 - After 10 (default) seconds the voting is over and the server change the map.
  23. *
  24. *
  25. * Credits:
  26. * Deagles - The main idea
  27. * arkshine - Some code
  28. * X-olent - Percentage idea
  29. *
  30. */
  31.  
  32. #include <amxmodx>
  33. #include <amxmisc>
  34.  
  35. #define PLUGIN "RockTheVote"
  36. #define AUTHOR "DA"
  37. #define VERSION "1.8"
  38.  
  39. #define MAX_MAPS 5
  40. #define MAX_MAP_LENGTH 64
  41. #define MAPSINI "maps.ini"
  42.  
  43. new rtv[33], howmanyvotes, task_time, keycount[MAX_MAPS], s_Maps[MAX_MAPS][MAX_MAP_LENGTH], count;
  44. new presskeys, howmanyvotesperc, timevote, directmapchange, bool:NextRoundChangeMap = false, nextmap[MAX_MAP_LENGTH];
  45.  
  46. public plugin_init()
  47. {
  48. register_plugin(PLUGIN, VERSION, AUTHOR);
  49. register_dictionary("mapchooser.txt");
  50. register_dictionary("common.txt");
  51. register_clcmd("say", "rockthevote");
  52. register_menu("Chose your Map", 1023, "gonna_chose");
  53. howmanyvotes = register_cvar("amx_howmanyvotes", "8");
  54. howmanyvotesperc = register_cvar("amx_howmanypercentage", "0.30");
  55. task_time = register_cvar("amx_rocktime", "10.0");
  56. timevote = register_cvar("amx_timevote", "5");
  57. directmapchange = register_cvar( "amx_directmapchange", "0" );
  58.  
  59. register_logevent ( "RoundStart", 2, "1=Round_Start" );
  60.  
  61. for (new i=0; i < MAX_MAPS+2; i++)
  62. presskeys = presskeys | (1<<i)
  63. }
  64.  
  65. public client_disconnect(id)
  66. {
  67. if (rtv[id-1] == id)
  68. {
  69. rtv[id-1] = 0;
  70. count--;
  71. }
  72. }
  73.  
  74. public RoundStart()
  75. {
  76. if ( !get_pcvar_num( directmapchange ) && NextRoundChangeMap )
  77. {
  78. server_cmd( "amx_map %s", nextmap );
  79. }
  80. }
  81.  
  82. public rockthevote(id)
  83. {
  84. new said[192];
  85. read_args(said, 192);
  86. if ((contain(said, "/rockthevote") != -1) || (contain(said, "rockthevote") != -1) || (contain(said, "rtv") != -1))
  87. {
  88. if (get_gametime() < (get_pcvar_float(timevote) * 60.0))
  89. client_print(id, print_chat, "Vote is currently not allowed. Wait %d minutes.", (floatround(((get_pcvar_float(timevote) * 60.0) - get_gametime()) / 60.0)));
  90. else
  91. {
  92. if (rtv[id-1] == id)
  93. client_print(id, print_chat, "You have already voted!");
  94. else
  95. {
  96. rtv[id-1] = id;
  97. count++;
  98.  
  99. static num;
  100. num = get_playersnum();
  101. num = floatround((get_pcvar_float(howmanyvotesperc) * num));
  102. if ((num == count) || (count >= get_pcvar_num(howmanyvotes)))
  103. {
  104. // AMXX Nextmap Chooser by cheap_suit
  105. if(find_plugin_byfile("mapchooser.amxx") != INVALID_PLUGIN_ID)
  106. {
  107. new oldWinLimit = get_cvar_num("mp_winlimit"), oldMaxRounds = get_cvar_num("mp_maxrounds");
  108. set_cvar_num("mp_winlimit",0);
  109. set_cvar_num("mp_maxrounds",-1);
  110.  
  111. if(callfunc_begin("voteNextmap","mapchooser.amxx") == 1)
  112. callfunc_end();
  113.  
  114. set_cvar_num("mp_winlimit",oldWinLimit);
  115. set_cvar_num("mp_maxrounds",oldMaxRounds);
  116. set_task(get_pcvar_float(task_time), "change_map", true);
  117. return PLUGIN_CONTINUE;
  118. }
  119.  
  120. StartTheVote();
  121. return PLUGIN_CONTINUE;
  122. }
  123. static name[32];
  124. get_user_name( id, name, charsmax( name ) );
  125.  
  126. client_print ( 0, print_chat, "%s vote was added. Need %d or %d^%^% to start voting!", name, (get_pcvar_num(howmanyvotes)-count), (floatround(get_pcvar_float(howmanyvotesperc) * 100.00)))
  127. }
  128. }
  129. }
  130. return PLUGIN_CONTINUE;
  131. }
  132.  
  133. public gonna_chose(id, key)
  134. {
  135. if (key < MAX_MAPS)
  136. {
  137. keycount[key]++;
  138. static name[32]
  139. get_user_name(id, name, charsmax(name));
  140. client_print(0, print_chat, "%L", LANG_PLAYER, "X_CHOSE_X", name, s_Maps[key]);
  141. }
  142. }
  143.  
  144. StartTheVote()
  145. {
  146. if (!RetrieveMaps(s_Maps))
  147. return PLUGIN_CONTINUE;
  148.  
  149. static i, chosetext[256];
  150. count=0;
  151.  
  152. formatex(chosetext, charsmax(chosetext), "\y%L:\w^n^n", LANG_SERVER, "CHOOSE_NEXTM");
  153. for (i=0; i < MAX_MAPS; i++)
  154. formatex(chosetext, charsmax(chosetext), "%s%d. %s^n", chosetext, i+1, s_Maps[i]);
  155.  
  156.  
  157. formatex(chosetext, charsmax(chosetext), "%s^n%d. %L", chosetext, MAX_MAPS+2, LANG_SERVER, "NONE");
  158. client_cmd(0, "spk Gman/Gman_Choose2");
  159. client_print(0, print_chat, "%L", LANG_SERVER, "TIME_CHOOSE");
  160. show_menu(0, presskeys, chosetext, 15, "Chose your Map");
  161. set_task(get_pcvar_float(task_time), "change_map", false);
  162. return PLUGIN_CONTINUE;
  163. }
  164.  
  165.  
  166. bool:RetrieveMaps(s_MapsFound[][])
  167. {
  168. new s_File[256], s_ConfigsDir[256];
  169. get_configsdir(s_ConfigsDir, 255);
  170. formatex(s_File, 255, "%s/%s", s_ConfigsDir, MAPSINI);
  171.  
  172. if (!file_exists(s_File))
  173. get_cvar_string("mapcyclefile", s_File, charsmax(s_File));
  174.  
  175. new s_CurrentMap[MAX_MAP_LENGTH];
  176. get_mapname(s_CurrentMap, charsmax(s_CurrentMap));
  177.  
  178. new p_File = fopen(s_File, "rt");
  179. new Array:a_Maps;
  180. new i_MapsCount = SaveAllMaps(p_File, a_Maps);
  181.  
  182. new bool:b_Error = true, i;
  183. switch (i_MapsCount)
  184. {
  185. case 0 : log_amx("There are no maps in the %s.", s_File);
  186. case 1 .. MAX_MAPS : log_amx("Not enough maps found. (requires at least %d maps)", MAX_MAPS + 1 );
  187. default : b_Error = false;
  188. }
  189. if (b_Error)
  190. {
  191. fclose(p_File);
  192. ArrayDestroy(a_Maps);
  193. return false;
  194. }
  195. fclose(p_File);
  196.  
  197. new i_Rand, i_Cnt;
  198. while (i_Cnt != MAX_MAPS)
  199. {
  200. i_Rand = random_num(0, ArraySize(a_Maps) - 1);
  201. ArrayGetString(a_Maps, i_Rand, s_MapsFound[i_Cnt], MAX_MAP_LENGTH - 1);
  202.  
  203. if (equal(s_MapsFound[i_Cnt], s_CurrentMap))
  204. {
  205. continue;
  206. }
  207.  
  208. for (i = 0; i < i_Cnt; i++)
  209. {
  210. if (equal(s_MapsFound[i], s_MapsFound[i_Cnt]))
  211. {
  212. break;
  213. }
  214. }
  215.  
  216. if (i == i_Cnt)
  217. {
  218. ArrayDeleteItem(a_Maps, i_Rand);
  219. i_Cnt++;
  220. }
  221. }
  222. ArrayDestroy(a_Maps);
  223. return true;
  224. }
  225.  
  226. SaveAllMaps(p_File, &Array:a_Maps)
  227. {
  228. a_Maps = ArrayCreate(MAX_MAP_LENGTH);
  229. new s_Buffer[MAX_MAP_LENGTH]
  230.  
  231. while (!feof(p_File))
  232. {
  233. fgets(p_File, s_Buffer, charsmax(s_Buffer));
  234. trim(s_Buffer);
  235. if (!s_Buffer[0] || s_Buffer[0] == ';' || (s_Buffer[0] == '/' && s_Buffer[1] == '/'))
  236. {
  237. continue;
  238. }
  239. if (is_map_valid(s_Buffer))
  240. {
  241. ArrayPushString(a_Maps, s_Buffer);
  242. }
  243. }
  244. return ArraySize(a_Maps);
  245. }
  246.  
  247. public change_map(bool:chooserornot)
  248. {
  249. if (!chooserornot)
  250. {
  251. static keypuffer=0, i=0;
  252. for (i=0; i < MAX_MAPS; i++)
  253. if (keycount[i] > keycount[keypuffer])
  254. keypuffer = i;
  255.  
  256. copy(nextmap, charsmax(nextmap), s_Maps[keypuffer]);
  257. }
  258. else
  259. get_cvar_string("amx_nextmap", nextmap, charsmax(nextmap));
  260.  
  261. log_amx("Map will be changed to %s.", nextmap)
  262. if (chooserornot)
  263. client_print(0, print_chat, "%L", LANG_PLAYER, "CHO_FIN_NEXT", nextmap);
  264.  
  265. if ( !get_pcvar_num( directmapchange ) )
  266. {
  267. set_hudmessage(210, 0, 0, 0.05, 0.45, 1, 20.0, 10.0, 0.5, 0.15, 4);
  268. show_hudmessage(0, "This is the final round");
  269.  
  270. NextRoundChangeMap = true;
  271. }
  272.  
  273. else
  274. {
  275. server_cmd("amx_map %s", nextmap);
  276. }
  277. }
  278.  

_________________
Kép

[steam]alfaaaa[/steam]


Hozzászólás jelentése
Vissza a tetejére
   
 Hozzászólás témája: Re: rtv
HozzászólásElküldve: 2013.05.08. 15:30 
Offline
Tiszteletbeli
Avatar

Csatlakozott: 2012.10.09. 13:48
Hozzászólások: 1439
Megköszönték neki: 174 alkalommal
SMA Forráskód: [ Mindet kijelol ]
  1.  
  2. #include <amxmodx>
  3. #include <amxmisc>
  4.  
  5. #define PLUGIN "RockTheVote"
  6. #define AUTHOR "DA"
  7. #define VERSION "1.8"
  8.  
  9. #define MAX_MAPS 5
  10. #define MAX_MAP_LENGTH 64
  11. #define MAPSINI "maps.ini"
  12.  
  13. new rtv[33], howmanyvotes, task_time, keycount[MAX_MAPS], s_Maps[MAX_MAPS][MAX_MAP_LENGTH], count;
  14. new presskeys, howmanyvotesperc, timevote, directmapchange, bool:NextRoundChangeMap = false, nextmap[MAX_MAP_LENGTH];
  15.  
  16. public plugin_init()
  17. {
  18. register_plugin(PLUGIN, VERSION, AUTHOR);
  19. register_dictionary("mapchooser.txt");
  20. register_dictionary("common.txt");
  21. register_clcmd("say", "rockthevote");
  22. register_menu("Chose your Map", 1023, "gonna_chose");
  23. howmanyvotes = register_cvar("amx_howmanyvotes", "8");
  24. howmanyvotesperc = register_cvar("amx_howmanypercentage", "0.30");
  25. task_time = register_cvar("amx_rocktime", "10.0");
  26. timevote = register_cvar("amx_timevote", "5");
  27. directmapchange = register_cvar( "amx_directmapchange", "0" );
  28.  
  29. register_logevent ( "RoundStart", 2, "1=Round_Start" );
  30.  
  31. for (new i=0; i < MAX_MAPS+2; i++)
  32. presskeys = presskeys | (1<<i)
  33. }
  34.  
  35. public client_disconnect(id)
  36. {
  37. if (rtv[id-1] == id)
  38. {
  39. rtv[id-1] = 0;
  40. count--;
  41. }
  42. }
  43.  
  44. public RoundStart()
  45. {
  46. if ( !get_pcvar_num( directmapchange ) && NextRoundChangeMap )
  47. {
  48. server_cmd( "amx_map %s", nextmap );
  49. }
  50. }
  51.  
  52. public rockthevote(id)
  53. {
  54. new said[192];
  55. read_args(said, 192);
  56. if ((contain(said, "/rockthevote") != -1) || (contain(said, "rockthevote") != -1) || (contain(said, "rtv") != -1))
  57. {
  58. if (get_gametime() < (get_pcvar_float(timevote) * 60.0))
  59. client_print(id, print_chat, "Jelenleg nem szavazhatsz. Várj %d mp.-et!", (floatround(((get_pcvar_float(timevote) * 60.0) - get_gametime()) / 60.0)));
  60. else
  61. {
  62. if (rtv[id-1] == id)
  63. client_print(id, print_chat, "Már szavaztál!");
  64. else
  65. {
  66. rtv[id-1] = id;
  67. count++;
  68.  
  69. static num;
  70. num = get_playersnum();
  71. num = floatround((get_pcvar_float(howmanyvotesperc) * num));
  72. if ((num == count) || (count >= get_pcvar_num(howmanyvotes)))
  73. {
  74. // AMXX Nextmap Chooser by cheap_suit
  75. if(find_plugin_byfile("mapchooser.amxx") != INVALID_PLUGIN_ID)
  76. {
  77. new oldWinLimit = get_cvar_num("mp_winlimit"), oldMaxRounds = get_cvar_num("mp_maxrounds");
  78. set_cvar_num("mp_winlimit",0);
  79. set_cvar_num("mp_maxrounds",-1);
  80.  
  81. if(callfunc_begin("voteNextmap","mapchooser.amxx") == 1)
  82. callfunc_end();
  83.  
  84. set_cvar_num("mp_winlimit",oldWinLimit);
  85. set_cvar_num("mp_maxrounds",oldMaxRounds);
  86. set_task(get_pcvar_float(task_time), "change_map", true);
  87. return PLUGIN_CONTINUE;
  88. }
  89.  
  90. StartTheVote();
  91. return PLUGIN_CONTINUE;
  92. }
  93. static name[32];
  94. get_user_name( id, name, charsmax( name ) );
  95.  
  96. client_print ( 0, print_chat, "%s szavazása hozzáadva. Kell %d vagy %d^%^% hogy elkezdődjön a szavazás!", name, (get_pcvar_num(howmanyvotes)-count), (floatround(get_pcvar_float(howmanyvotesperc) * 100.00)))
  97. }
  98. }
  99. }
  100. return PLUGIN_CONTINUE;
  101. }
  102.  
  103. public gonna_chose(id, key)
  104. {
  105. if (key < MAX_MAPS)
  106. {
  107. keycount[key]++;
  108. static name[32]
  109. get_user_name(id, name, charsmax(name));
  110. client_print(0, print_chat, "%L", LANG_PLAYER, "X_CHOSE_X", name, s_Maps[key]);
  111. }
  112. }
  113.  
  114. StartTheVote()
  115. {
  116. if (!RetrieveMaps(s_Maps))
  117. return PLUGIN_CONTINUE;
  118.  
  119. static i, chosetext[256];
  120. count=0;
  121.  
  122. formatex(chosetext, charsmax(chosetext), "\y%L:\w^n^n", LANG_SERVER, "CHOOSE_NEXTM");
  123. for (i=0; i < MAX_MAPS; i++)
  124. formatex(chosetext, charsmax(chosetext), "%s%d. %s^n", chosetext, i+1, s_Maps[i]);
  125.  
  126.  
  127. formatex(chosetext, charsmax(chosetext), "%s^n%d. %L", chosetext, MAX_MAPS+2, LANG_SERVER, "NONE");
  128. client_cmd(0, "spk Gman/Gman_Choose2");
  129. client_print(0, print_chat, "%L", LANG_SERVER, "TIME_CHOOSE");
  130. show_menu(0, presskeys, chosetext, 15, "Chose your Map");
  131. set_task(get_pcvar_float(task_time), "change_map", false);
  132. return PLUGIN_CONTINUE;
  133. }
  134.  
  135.  
  136. bool:RetrieveMaps(s_MapsFound[][])
  137. {
  138. new s_File[256], s_ConfigsDir[256];
  139. get_configsdir(s_ConfigsDir, 255);
  140. formatex(s_File, 255, "%s/%s", s_ConfigsDir, MAPSINI);
  141.  
  142. if (!file_exists(s_File))
  143. get_cvar_string("mapcyclefile", s_File, charsmax(s_File));
  144.  
  145. new s_CurrentMap[MAX_MAP_LENGTH];
  146. get_mapname(s_CurrentMap, charsmax(s_CurrentMap));
  147.  
  148. new p_File = fopen(s_File, "rt");
  149. new Array:a_Maps;
  150. new i_MapsCount = SaveAllMaps(p_File, a_Maps);
  151.  
  152. new bool:b_Error = true, i;
  153. switch (i_MapsCount)
  154. {
  155. case 0 : log_amx("Nincs map a(z) %s-ban", s_File);
  156. case 1 .. MAX_MAPS : log_amx("Nem található elég map (szükséges: %d map)", MAX_MAPS + 1 );
  157. default : b_Error = false;
  158. }
  159. if (b_Error)
  160. {
  161. fclose(p_File);
  162. ArrayDestroy(a_Maps);
  163. return false;
  164. }
  165. fclose(p_File);
  166.  
  167. new i_Rand, i_Cnt;
  168. while (i_Cnt != MAX_MAPS)
  169. {
  170. i_Rand = random_num(0, ArraySize(a_Maps) - 1);
  171. ArrayGetString(a_Maps, i_Rand, s_MapsFound[i_Cnt], MAX_MAP_LENGTH - 1);
  172.  
  173. if (equal(s_MapsFound[i_Cnt], s_CurrentMap))
  174. {
  175. continue;
  176. }
  177.  
  178. for (i = 0; i < i_Cnt; i++)
  179. {
  180. if (equal(s_MapsFound[i], s_MapsFound[i_Cnt]))
  181. {
  182. break;
  183. }
  184. }
  185.  
  186. if (i == i_Cnt)
  187. {
  188. ArrayDeleteItem(a_Maps, i_Rand);
  189. i_Cnt++;
  190. }
  191. }
  192. ArrayDestroy(a_Maps);
  193. return true;
  194. }
  195.  
  196. SaveAllMaps(p_File, &Array:a_Maps)
  197. {
  198. a_Maps = ArrayCreate(MAX_MAP_LENGTH);
  199. new s_Buffer[MAX_MAP_LENGTH]
  200.  
  201. while (!feof(p_File))
  202. {
  203. fgets(p_File, s_Buffer, charsmax(s_Buffer));
  204. trim(s_Buffer);
  205. if (!s_Buffer[0] || s_Buffer[0] == ';' || (s_Buffer[0] == '/' && s_Buffer[1] == '/'))
  206. {
  207. continue;
  208. }
  209. if (is_map_valid(s_Buffer))
  210. {
  211. ArrayPushString(a_Maps, s_Buffer);
  212. }
  213. }
  214. return ArraySize(a_Maps);
  215. }
  216.  
  217. public change_map(bool:chooserornot)
  218. {
  219. if (!chooserornot)
  220. {
  221. static keypuffer=0, i=0;
  222. for (i=0; i < MAX_MAPS; i++)
  223. if (keycount[i] > keycount[keypuffer])
  224. keypuffer = i;
  225.  
  226. copy(nextmap, charsmax(nextmap), s_Maps[keypuffer]);
  227. }
  228. else
  229. get_cvar_string("amx_nextmap", nextmap, charsmax(nextmap));
  230.  
  231. log_amx("Következő map: %s.", nextmap)
  232. if (chooserornot)
  233. client_print(0, print_chat, "%L", LANG_PLAYER, "CHO_FIN_NEXT", nextmap);
  234.  
  235. if ( !get_pcvar_num( directmapchange ) )
  236. {
  237. set_hudmessage(210, 0, 0, 0.05, 0.45, 1, 20.0, 10.0, 0.5, 0.15, 4);
  238. show_hudmessage(0, "Ez az utolsó kör!");
  239.  
  240. NextRoundChangeMap = true;
  241. }
  242.  
  243. else
  244. {
  245. server_cmd("amx_map %s", nextmap);
  246. }
  247. }

UTF-8-ba mentsd, és fordítsd amxx-re!

_________________
Minden jót! :)


A hozzászólást 1 alkalommal szerkesztették, utoljára BeepBeep 2013.05.08. 15:40-kor.

Hozzászólás jelentése
Vissza a tetejére
   
 Hozzászólás témája: Re: rtv
HozzászólásElküldve: 2013.05.08. 15:36 
Offline
Nagyúr
Avatar

Csatlakozott: 2013.03.28. 20:32
Hozzászólások: 561
Megköszönt másnak: 59 alkalommal
Megköszönték neki: 56 alkalommal
mi?

_________________
Kép

[steam]alfaaaa[/steam]


Hozzászólás jelentése
Vissza a tetejére
   
 Hozzászólás témája: Re: rtv
HozzászólásElküldve: 2013.05.09. 17:23 
Offline
Tag

Csatlakozott: 2013.03.31. 14:10
Hozzászólások: 52
Megköszönt másnak: 1 alkalommal
Megköszönték neki: 2 alkalommal
alfanero írta:
mi?
Inkább mi a kérdés/kérés?

_________________
10 féle ember van: aki ért a programozáshoz, és aki nem


Hozzászólás jelentése
Vissza a tetejére
   
 Hozzászólás témája: Re: rtv
HozzászólásElküldve: 2013.05.09. 17:34 
Offline
Tiszteletbeli
Avatar

Csatlakozott: 2012.10.09. 13:48
Hozzászólások: 1439
Megköszönték neki: 174 alkalommal
Dias írta:
alfanero írta:
mi?
Inkább mi a kérdés/kérés?

Nem érti, hogy el kéne mentenie a lefordított forráskódot UTF-8-as kódolásba, és úgy alakítsa át amxx-é....

_________________
Minden jót! :)


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  [ 5 hozzászólás ] 


Ki van itt

Jelenlévő fórumozók: nincs regisztrált felhasználó valamint 4 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