Перейти к содержанию
Авторизация  
Aversia

фарм для новичков

Рекомендуемые сообщения

Подскажите где то видел скрипт для создания зоны фарма для новичков то есть ограничит вход с определенным шмотом

Нашел вот этот http://forummaxi.ru/files/file/1236-%D0%B7%D0%BE%D0%BD%D0%B0-%D1%81-%D1%80%D0%B0%D0%B7%D0%BB%D0%B8%D1%87%D0%BD%D1%8B%D0%BC%D0%B8-%D0%BE%D0%B3%D1%80%D0%B0%D0%BD%D0%B8%D1%87%D0%B5%D0%BD%D0%B8%D1%8F%D0%BC%D0%B8/ сменил импорты но бьет ошибку

Если у кого то есть нормальный рабочий поделитесь пожалуйста сборка pwsoft натыкую плюсиков спасибо с наступающим:)

1. ERROR in /FarmZone.java (at line 5)
	import net.sf.l2j.common.ThreadPoolManager;
	       ^^^^^^^^^^^^^^^^^
The import net.sf.l2j.common cannot be resolved
----------
2. ERROR in /FarmZone.java (at line 6)
	import net.sf.l2j.extensions.listeners.L2ZoneEnterLeaveListener;
	       ^^^^^^^^^^^^^^^^^^^^^
The import net.sf.l2j.extensions cannot be resolved
----------
3. ERROR in /FarmZone.java (at line 10)
	import net.sf.l2j.gameserver.model.L2Player;
	       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The import net.sf.l2j.gameserver.model.L2Player cannot be resolved
----------
4. ERROR in /FarmZone.java (at line 12)
	import net.sf.l2j.gameserver.model.L2Zone;
	       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The import net.sf.l2j.gameserver.model.L2Zone cannot be resolved
----------
5. ERROR in /FarmZone.java (at line 13)
	import net.sf.l2j.gameserver.model.L2Zone.ZoneType;
	       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The import net.sf.l2j.gameserver.model.L2Zone cannot be resolved
----------
6. ERROR in /FarmZone.java (at line 14)
	import net.sf.l2j.gameserver.model.items.L2ItemInstance;
	       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The import net.sf.l2j.gameserver.model.items cannot be resolved
----------
7. ERROR in /FarmZone.java (at line 45)
	private static L2Zone _Zone = ZoneManager.getInstance().getZoneByIndex(ZoneType.battle_zone, 4, true);
	               ^^^^^^
L2Zone cannot be resolved to a type
----------
8. ERROR in /FarmZone.java (at line 45)
	private static L2Zone _Zone = ZoneManager.getInstance().getZoneByIndex(ZoneType.battle_zone, 4, true);
	                                                                       ^^^^^^^^
ZoneType cannot be resolved to a variable
----------
9. ERROR in /FarmZone.java (at line 47)
	L2Item.Grade cryType;
	^^^^^^^^^^^^
L2Item.Grade cannot be resolved to a type
----------
10. ERROR in /FarmZone.java (at line 54)
	_Zone.getListenerEngine().addMethodInvokedListener(_ZoneListener);
	^^^^^
L2Zone cannot be resolved to a type
----------
11. ERROR in /FarmZone.java (at line 63)
	_Zone.getListenerEngine().removeMethodInvokedListener(_ZoneListener);
	^^^^^
L2Zone cannot be resolved to a type
----------
12. ERROR in /FarmZone.java (at line 64)
	_Zone.getListenerEngine().addMethodInvokedListener(_ZoneListener);
	^^^^^
L2Zone cannot be resolved to a type
----------
13. ERROR in /FarmZone.java (at line 71)
	_Zone.getListenerEngine().removeMethodInvokedListener(_ZoneListener);
	^^^^^
L2Zone cannot be resolved to a type
----------
14. ERROR in /FarmZone.java (at line 74)
	private class ZoneListener extends L2ZoneEnterLeaveListener
	                                   ^^^^^^^^^^^^^^^^^^^^^^^^
L2ZoneEnterLeaveListener cannot be resolved to a type
----------
15. ERROR in /FarmZone.java (at line 77)
	public void objectEntered(L2Zone zone, L2Object object)
	                          ^^^^^^
L2Zone cannot be resolved to a type
----------
16. ERROR in /FarmZone.java (at line 82)
	L2Player player = object.getPlayer();
	^^^^^^^^
L2Player cannot be resolved to a type
----------
17. ERROR in /FarmZone.java (at line 85)
	ThreadPoolManager.getInstance().scheduleGeneral(new TeleToTown((L2Character) object), tpDelay * 1000);
	^^^^^^^^^^^^^^^^^
ThreadPoolManager cannot be resolved
----------
18. ERROR in /FarmZone.java (at line 89)
	public void objectLeaved(L2Zone zone, L2Object object)
	                         ^^^^^^
L2Zone cannot be resolved to a type
----------
19. ERROR in /FarmZone.java (at line 100)
	private boolean canEnterToZone(L2Player player)
	                               ^^^^^^^^
L2Player cannot be resolved to a type
----------
20. ERROR in /FarmZone.java (at line 102)
	L2ItemInstance[] inv = player.getInventory().getItems();
	^^^^^^^^^^^^^^
L2ItemInstance cannot be resolved to a type
----------
21. ERROR in /FarmZone.java (at line 103)
	for (L2ItemInstance item : inv)
	     ^^^^^^^^^^^^^^
L2ItemInstance cannot be resolved to a type
----------
22. ERROR in /FarmZone.java (at line 107)
	cryType = item.getItem().getCrystalType();
	^^^^^^^
cryType cannot be resolved to a variable
----------
23. ERROR in /FarmZone.java (at line 114)
	NotifyPlayer(player, item, 1, 1, cryType);
	                                 ^^^^^^^
cryType cannot be resolved to a variable
----------
24. ERROR in /FarmZone.java (at line 119)
	if(cryType.toString() == abort)
	   ^^^^^^^
cryType cannot be resolved
----------
25. ERROR in /FarmZone.java (at line 121)
	NotifyPlayer(player, item, 1, 2, cryType);
	                                 ^^^^^^^
cryType cannot be resolved to a variable
----------
26. ERROR in /FarmZone.java (at line 131)
	NotifyPlayer(player, item, 2, 1, cryType);
	                                 ^^^^^^^
cryType cannot be resolved to a variable
----------
27. ERROR in /FarmZone.java (at line 136)
	if(cryType.toString() == abort)
	   ^^^^^^^
cryType cannot be resolved
----------
28. ERROR in /FarmZone.java (at line 138)
	NotifyPlayer(player, item, 2, 2, cryType);
	                                 ^^^^^^^
cryType cannot be resolved to a variable
----------
29. ERROR in /FarmZone.java (at line 144)
	else if(item.getItem().getType2() == L2Item.TYPE2_ACCESSORY || cryType.equals(nonAllowedGradeAccessory))
	                                                               ^^^^^^^
cryType cannot be resolved
----------
30. ERROR in /FarmZone.java (at line 148)
	NotifyPlayer(player, item, 3, 1, cryType);
	                                 ^^^^^^^
cryType cannot be resolved to a variable
----------
31. ERROR in /FarmZone.java (at line 153)
	if(cryType.toString() == abort)
	   ^^^^^^^
cryType cannot be resolved
----------
32. ERROR in /FarmZone.java (at line 155)
	NotifyPlayer(player, item, 3, 2, cryType);
	                                 ^^^^^^^
cryType cannot be resolved to a variable
----------
33. ERROR in /FarmZone.java (at line 166)
	NotifyPlayer(player, item, 0, 3, L2Item.Grade.NONE);
	                                        ^^^^^
Grade cannot be resolved or is not a field
----------
34. ERROR in /FarmZone.java (at line 176)
	L2ItemInstance[] petInv = pet.getInventory().getItems();
	^^^^^^^^^^^^^^
L2ItemInstance cannot be resolved to a type
----------
35. ERROR in /FarmZone.java (at line 177)
	for (L2ItemInstance item : petInv)
	     ^^^^^^^^^^^^^^
L2ItemInstance cannot be resolved to a type
----------
36. ERROR in /FarmZone.java (at line 181)
	L2Item.Grade cryType = item.getItem().getCrystalType();
	^^^^^^^^^^^^
L2Item.Grade cannot be resolved to a type
----------
37. ERROR in /FarmZone.java (at line 241)
	NotifyPlayer(player, item, 0, 3, L2Item.Grade.NONE);
	                                        ^^^^^
Grade cannot be resolved or is not a field
----------
38. ERROR in /FarmZone.java (at line 277)
	private void NotifyPlayer (L2Player player, L2ItemInstance item, int equipType, int failType, L2Item.Grade grade)
	                           ^^^^^^^^
L2Player cannot be resolved to a type
----------
39. ERROR in /FarmZone.java (at line 277)
	private void NotifyPlayer (L2Player player, L2ItemInstance item, int equipType, int failType, L2Item.Grade grade)
	                                            ^^^^^^^^^^^^^^
L2ItemInstance cannot be resolved to a type
----------
40. ERROR in /FarmZone.java (at line 277)
	private void NotifyPlayer (L2Player player, L2ItemInstance item, int equipType, int failType, L2Item.Grade grade)
	                                                                                              ^^^^^^^^^^^^
L2Item.Grade cannot be resolved to a type
----------
40 problems (40 errors)
L2ZoneEnterLeaveListener cannot be resolved to a type
L2Zone cannot be resolved to a type
L2Zone cannot be resolved to a type
L2Player cannot be resolved to a type
L2Player cannot be resolved to a type
L2ItemInstance cannot be resolved to a type
L2Item.Grade cannot be resolved to a type
The import net.sf.l2j.common cannot be resolved
The import net.sf.l2j.extensions cannot be resolved
The import net.sf.l2j.gameserver.model.L2Player cannot be resolved
The import net.sf.l2j.gameserver.model.L2Zone cannot be resolved
The import net.sf.l2j.gameserver.model.L2Zone cannot be resolved
The import net.sf.l2j.gameserver.model.items cannot be resolved
L2Zone cannot be resolved to a type
L2Item.Grade cannot be resolved to a type
L2Player cannot be resolved to a type
ThreadPoolManager cannot be resolved
ZoneType cannot be resolved to a variable
L2Zone cannot be resolved to a type
L2Zone cannot be resolved to a type
L2Zone cannot be resolved to a type
L2Zone cannot be resolved to a type
L2ItemInstance cannot be resolved to a type
L2ItemInstance cannot be resolved to a type
cryType cannot be resolved to a variable
cryType cannot be resolved to a variable
cryType cannot be resolved
cryType cannot be resolved to a variable
cryType cannot be resolved to a variable
cryType cannot be resolved
cryType cannot be resolved to a variable
cryType cannot be resolved
cryType cannot be resolved to a variable
cryType cannot be resolved
cryType cannot be resolved to a variable
Grade cannot be resolved or is not a field
L2ItemInstance cannot be resolved to a type
L2ItemInstance cannot be resolved to a type
L2Item.Grade cannot be resolved to a type
Grade cannot be resolved or is not a field
Failed executing script: /root/server/gameserver/data/scripts/events/FarmZones/FarmZone.java. See FarmZone.java.error.log for detai
если может у кого есть нормальный рабочий сборка pwsoft тыкну плюсик
Изменено пользователем Aversia

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

 

Подскажите где то видел скрипт для создания зоны фарма для новичков то есть ограничит вход с определенным шмотом

Нашел вот этот http://forummaxi.ru/files/file/1236-%D0%B7%D0%BE%D0%BD%D0%B0-%D1%81-%D1%80%D0%B0%D0%B7%D0%BB%D0%B8%D1%87%D0%BD%D1%8B%D0%BC%D0%B8-%D0%BE%D0%B3%D1%80%D0%B0%D0%BD%D0%B8%D1%87%D0%B5%D0%BD%D0%B8%D1%8F%D0%BC%D0%B8/ сменил импорты но бьет ошибку

Если у кого то есть нормальный рабочий поделитесь пожалуйста сборка pwsoft натыкую плюсиков спасибо с наступающим :)

1. ERROR in /FarmZone.java (at line 5)
	import net.sf.l2j.common.ThreadPoolManager;
	       ^^^^^^^^^^^^^^^^^
The import net.sf.l2j.common cannot be resolved
----------
2. ERROR in /FarmZone.java (at line 6)
	import net.sf.l2j.extensions.listeners.L2ZoneEnterLeaveListener;
	       ^^^^^^^^^^^^^^^^^^^^^
The import net.sf.l2j.extensions cannot be resolved
----------
3. ERROR in /FarmZone.java (at line 10)
	import net.sf.l2j.gameserver.model.L2Player;
	       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The import net.sf.l2j.gameserver.model.L2Player cannot be resolved
----------
4. ERROR in /FarmZone.java (at line 12)
	import net.sf.l2j.gameserver.model.L2Zone;
	       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The import net.sf.l2j.gameserver.model.L2Zone cannot be resolved
----------
5. ERROR in /FarmZone.java (at line 13)
	import net.sf.l2j.gameserver.model.L2Zone.ZoneType;
	       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The import net.sf.l2j.gameserver.model.L2Zone cannot be resolved
----------
6. ERROR in /FarmZone.java (at line 14)
	import net.sf.l2j.gameserver.model.items.L2ItemInstance;
	       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The import net.sf.l2j.gameserver.model.items cannot be resolved
----------
7. ERROR in /FarmZone.java (at line 45)
	private static L2Zone _Zone = ZoneManager.getInstance().getZoneByIndex(ZoneType.battle_zone, 4, true);
	               ^^^^^^
L2Zone cannot be resolved to a type
----------
8. ERROR in /FarmZone.java (at line 45)
	private static L2Zone _Zone = ZoneManager.getInstance().getZoneByIndex(ZoneType.battle_zone, 4, true);
	                                                                       ^^^^^^^^
ZoneType cannot be resolved to a variable
----------
9. ERROR in /FarmZone.java (at line 47)
	L2Item.Grade cryType;
	^^^^^^^^^^^^
L2Item.Grade cannot be resolved to a type
----------
10. ERROR in /FarmZone.java (at line 54)
	_Zone.getListenerEngine().addMethodInvokedListener(_ZoneListener);
	^^^^^
L2Zone cannot be resolved to a type
----------
11. ERROR in /FarmZone.java (at line 63)
	_Zone.getListenerEngine().removeMethodInvokedListener(_ZoneListener);
	^^^^^
L2Zone cannot be resolved to a type
----------
12. ERROR in /FarmZone.java (at line 64)
	_Zone.getListenerEngine().addMethodInvokedListener(_ZoneListener);
	^^^^^
L2Zone cannot be resolved to a type
----------
13. ERROR in /FarmZone.java (at line 71)
	_Zone.getListenerEngine().removeMethodInvokedListener(_ZoneListener);
	^^^^^
L2Zone cannot be resolved to a type
----------
14. ERROR in /FarmZone.java (at line 74)
	private class ZoneListener extends L2ZoneEnterLeaveListener
	                                   ^^^^^^^^^^^^^^^^^^^^^^^^
L2ZoneEnterLeaveListener cannot be resolved to a type
----------
15. ERROR in /FarmZone.java (at line 77)
	public void objectEntered(L2Zone zone, L2Object object)
	                          ^^^^^^
L2Zone cannot be resolved to a type
----------
16. ERROR in /FarmZone.java (at line 82)
	L2Player player = object.getPlayer();
	^^^^^^^^
L2Player cannot be resolved to a type
----------
17. ERROR in /FarmZone.java (at line 85)
	ThreadPoolManager.getInstance().scheduleGeneral(new TeleToTown((L2Character) object), tpDelay * 1000);
	^^^^^^^^^^^^^^^^^
ThreadPoolManager cannot be resolved
----------
18. ERROR in /FarmZone.java (at line 89)
	public void objectLeaved(L2Zone zone, L2Object object)
	                         ^^^^^^
L2Zone cannot be resolved to a type
----------
19. ERROR in /FarmZone.java (at line 100)
	private boolean canEnterToZone(L2Player player)
	                               ^^^^^^^^
L2Player cannot be resolved to a type
----------
20. ERROR in /FarmZone.java (at line 102)
	L2ItemInstance[] inv = player.getInventory().getItems();
	^^^^^^^^^^^^^^
L2ItemInstance cannot be resolved to a type
----------
21. ERROR in /FarmZone.java (at line 103)
	for (L2ItemInstance item : inv)
	     ^^^^^^^^^^^^^^
L2ItemInstance cannot be resolved to a type
----------
22. ERROR in /FarmZone.java (at line 107)
	cryType = item.getItem().getCrystalType();
	^^^^^^^
cryType cannot be resolved to a variable
----------
23. ERROR in /FarmZone.java (at line 114)
	NotifyPlayer(player, item, 1, 1, cryType);
	                                 ^^^^^^^
cryType cannot be resolved to a variable
----------
24. ERROR in /FarmZone.java (at line 119)
	if(cryType.toString() == abort)
	   ^^^^^^^
cryType cannot be resolved
----------
25. ERROR in /FarmZone.java (at line 121)
	NotifyPlayer(player, item, 1, 2, cryType);
	                                 ^^^^^^^
cryType cannot be resolved to a variable
----------
26. ERROR in /FarmZone.java (at line 131)
	NotifyPlayer(player, item, 2, 1, cryType);
	                                 ^^^^^^^
cryType cannot be resolved to a variable
----------
27. ERROR in /FarmZone.java (at line 136)
	if(cryType.toString() == abort)
	   ^^^^^^^
cryType cannot be resolved
----------
28. ERROR in /FarmZone.java (at line 138)
	NotifyPlayer(player, item, 2, 2, cryType);
	                                 ^^^^^^^
cryType cannot be resolved to a variable
----------
29. ERROR in /FarmZone.java (at line 144)
	else if(item.getItem().getType2() == L2Item.TYPE2_ACCESSORY || cryType.equals(nonAllowedGradeAccessory))
	                                                               ^^^^^^^
cryType cannot be resolved
----------
30. ERROR in /FarmZone.java (at line 148)
	NotifyPlayer(player, item, 3, 1, cryType);
	                                 ^^^^^^^
cryType cannot be resolved to a variable
----------
31. ERROR in /FarmZone.java (at line 153)
	if(cryType.toString() == abort)
	   ^^^^^^^
cryType cannot be resolved
----------
32. ERROR in /FarmZone.java (at line 155)
	NotifyPlayer(player, item, 3, 2, cryType);
	                                 ^^^^^^^
cryType cannot be resolved to a variable
----------
33. ERROR in /FarmZone.java (at line 166)
	NotifyPlayer(player, item, 0, 3, L2Item.Grade.NONE);
	                                        ^^^^^
Grade cannot be resolved or is not a field
----------
34. ERROR in /FarmZone.java (at line 176)
	L2ItemInstance[] petInv = pet.getInventory().getItems();
	^^^^^^^^^^^^^^
L2ItemInstance cannot be resolved to a type
----------
35. ERROR in /FarmZone.java (at line 177)
	for (L2ItemInstance item : petInv)
	     ^^^^^^^^^^^^^^
L2ItemInstance cannot be resolved to a type
----------
36. ERROR in /FarmZone.java (at line 181)
	L2Item.Grade cryType = item.getItem().getCrystalType();
	^^^^^^^^^^^^
L2Item.Grade cannot be resolved to a type
----------
37. ERROR in /FarmZone.java (at line 241)
	NotifyPlayer(player, item, 0, 3, L2Item.Grade.NONE);
	                                        ^^^^^
Grade cannot be resolved or is not a field
----------
38. ERROR in /FarmZone.java (at line 277)
	private void NotifyPlayer (L2Player player, L2ItemInstance item, int equipType, int failType, L2Item.Grade grade)
	                           ^^^^^^^^
L2Player cannot be resolved to a type
----------
39. ERROR in /FarmZone.java (at line 277)
	private void NotifyPlayer (L2Player player, L2ItemInstance item, int equipType, int failType, L2Item.Grade grade)
	                                            ^^^^^^^^^^^^^^
L2ItemInstance cannot be resolved to a type
----------
40. ERROR in /FarmZone.java (at line 277)
	private void NotifyPlayer (L2Player player, L2ItemInstance item, int equipType, int failType, L2Item.Grade grade)
	                                                                                              ^^^^^^^^^^^^
L2Item.Grade cannot be resolved to a type
----------
40 problems (40 errors)
L2ZoneEnterLeaveListener cannot be resolved to a type
L2Zone cannot be resolved to a type
L2Zone cannot be resolved to a type
L2Player cannot be resolved to a type
L2Player cannot be resolved to a type
L2ItemInstance cannot be resolved to a type
L2Item.Grade cannot be resolved to a type
The import net.sf.l2j.common cannot be resolved
The import net.sf.l2j.extensions cannot be resolved
The import net.sf.l2j.gameserver.model.L2Player cannot be resolved
The import net.sf.l2j.gameserver.model.L2Zone cannot be resolved
The import net.sf.l2j.gameserver.model.L2Zone cannot be resolved
The import net.sf.l2j.gameserver.model.items cannot be resolved
L2Zone cannot be resolved to a type
L2Item.Grade cannot be resolved to a type
L2Player cannot be resolved to a type
ThreadPoolManager cannot be resolved
ZoneType cannot be resolved to a variable
L2Zone cannot be resolved to a type
L2Zone cannot be resolved to a type
L2Zone cannot be resolved to a type
L2Zone cannot be resolved to a type
L2ItemInstance cannot be resolved to a type
L2ItemInstance cannot be resolved to a type
cryType cannot be resolved to a variable
cryType cannot be resolved to a variable
cryType cannot be resolved
cryType cannot be resolved to a variable
cryType cannot be resolved to a variable
cryType cannot be resolved
cryType cannot be resolved to a variable
cryType cannot be resolved
cryType cannot be resolved to a variable
cryType cannot be resolved
cryType cannot be resolved to a variable
Grade cannot be resolved or is not a field
L2ItemInstance cannot be resolved to a type
L2ItemInstance cannot be resolved to a type
L2Item.Grade cannot be resolved to a type
Grade cannot be resolved or is not a field
Failed executing script: /root/server/gameserver/data/scripts/events/FarmZones/FarmZone.java. See FarmZone.java.error.log for detai
если может у кого есть нормальный рабочий сборка pwsoft тыкну плюсик

Импорты под свою сборку подкорректируй

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

Этот скрипт не будет работать на пв, если только хукать ядро. Могу сделать телепорт в указанную зону со всевозможными проверками для pw, за ценой в лс.

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

Этот скрипт не будет работать на пв, если только хукать ядро. Могу сделать телепорт в указанную зону со всевозможными проверками для pw, за ценой в лс.

А для других сборок сможешь сделать?

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

В общем для люси и пв имеется скрипт, правлю по вашим желаниям, отдам за 400. Дорого - пишите сами.

Изменено пользователем Calyps0

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

В общем для люси и пв имеется скрипт, правлю по вашим желаниям, отдам за 400. Дорого - пишите сами.

 

ТС уже другой скрипт под себя поправил, насколько я знаю.

Я не сколько не оспариваю твои способности, но 400р. это реально дорого.  :)  

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

ТС уже другой скрипт под себя поправил, насколько я знаю.

Я не сколько не оспариваю твои способности, но 400р. это реально дорого.  :)  

Согласен)) Я тоже взял с шары и поправил под себя) Все норм работает )

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

Для публикации сообщений создайте учётную запись или авторизуйтесь

Вы должны быть пользователем, чтобы оставить комментарий

Создать учетную запись

Зарегистрируйте новую учётную запись в нашем сообществе. Это очень просто!

Регистрация нового пользователя

Войти

Уже есть аккаунт? Войти в систему.

Войти
Авторизация  

  • Последние посетители   0 пользователей онлайн

    Ни одного зарегистрированного пользователя не просматривает данную страницу

×
×
  • Создать...