Показать сообщение отдельно
Непрочитано 22.05.2011, 16:12   #5
Аватар для HeavyMetaJI
Пользователь

Автор темы (Топик Стартер) Re: Помогите с установкой Эвента

несмешно
шас выложу

Добавлено через 33 минуты
Вот начну с начала как я ставил эвент чтобы некому неморочить голову и чтоб могли найти мои ошибки...

вот сам эвент, ток непойму почему там 2 файла java



вот я поменял импорты в UndergroundTemplate.java

Были



Поменял



Добавил в C:\server\gameserver\data\scripts.cfg



Запускаю сервер и вот ошибка..

Код:
1. ERROR in \UndergroundTemplate.java (at line 1)
	я╗┐package events.underground;
	^
Syntax error on token "Invalid Character", delete this token
----------
2. ERROR in \UndergroundTemplate.java (at line 5)
	import net.sf.l2j.ext.listeners.L2ZoneEnterLeaveListener;
	       ^^^^^^^^^^^^^^
The import net.sf.l2j.ext cannot be resolved
----------
3. ERROR in \UndergroundTemplate.java (at line 6)
	import net.sf.l2j.ext.scripts.Functions;
	       ^^^^^^^^^^^^^^
The import net.sf.l2j.ext cannot be resolved
----------
4. ERROR in \UndergroundTemplate.java (at line 7)
	import net.sf.l2j.ext.scripts.ScriptFile;
	       ^^^^^^^^^^^^^^
The import net.sf.l2j.ext cannot be resolved
----------
5. ERROR in \UndergroundTemplate.java (at line 9)
	import net.sf.l2j.gameserver.cache.Msg;
	       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The import net.sf.l2j.gameserver.cache.Msg cannot be resolved
----------
6. ERROR in \UndergroundTemplate.java (at line 10)
	import net.sf.l2j.gameserver.clientpackets.Say2C;
	       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The import net.sf.l2j.gameserver.clientpackets cannot be resolved
----------
7. ERROR in \UndergroundTemplate.java (at line 11)
	import net.sf.l2j.gameserver.model.L2Character;
	       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The import net.sf.l2j.gameserver.model.L2Character cannot be resolved
----------
8. ERROR in \UndergroundTemplate.java (at line 13)
	import net.sf.l2j.gameserver.model.L2Playable;
	       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The import net.sf.l2j.gameserver.model.L2Playable cannot be resolved
----------
9. ERROR in \UndergroundTemplate.java (at line 14)
	import net.sf.l2j.gameserver.model.L2Player;
	       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The import net.sf.l2j.gameserver.model.L2Player cannot be resolved
----------
10. ERROR in \UndergroundTemplate.java (at line 16)
	import net.sf.l2j.gameserver.model.L2Zone;
	       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The import net.sf.l2j.gameserver.model.L2Zone cannot be resolved
----------
11. ERROR in \UndergroundTemplate.java (at line 17)
	import net.sf.l2j.gameserver.tables.SkillTable;
	       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The import net.sf.l2j.gameserver.tables cannot be resolved
----------
12. ERROR in \UndergroundTemplate.java (at line 18)
	import net.sf.l2j.util.Location;
	       ^^^^^^^^^^^^^^^^^^^^^^^^
The import net.sf.l2j.util.Location cannot be resolved
----------
13. ERROR in \UndergroundTemplate.java (at line 21)
	public abstract class UndergroundTemplate extends Functions implements ScriptFile
	                                                  ^^^^^^^^^
Functions cannot be resolved to a type
----------
14. ERROR in \UndergroundTemplate.java (at line 21)
	public abstract class UndergroundTemplate extends Functions implements ScriptFile
	                                                                       ^^^^^^^^^^
ScriptFile cannot be resolved to a type
----------
15. ERROR in \UndergroundTemplate.java (at line 26)
	protected L2Player _creator;
	          ^^^^^^^^
L2Player cannot be resolved to a type
----------
16. ERROR in \UndergroundTemplate.java (at line 37)
	protected Location _team1point;
	          ^^^^^^^^
Location cannot be resolved to a type
----------
17. ERROR in \UndergroundTemplate.java (at line 38)
	protected Location _team2point;
	          ^^^^^^^^
Location cannot be resolved to a type
----------
18. ERROR in \UndergroundTemplate.java (at line 39)
	protected Location _team3point;
	          ^^^^^^^^
Location cannot be resolved to a type
----------
19. ERROR in \UndergroundTemplate.java (at line 40)
	protected Location _team4point;
	          ^^^^^^^^
Location cannot be resolved to a type
----------
20. ERROR in \UndergroundTemplate.java (at line 42)
	protected L2Player _team1 = null;
	          ^^^^^^^^
L2Player cannot be resolved to a type
----------
21. ERROR in \UndergroundTemplate.java (at line 43)
	protected L2Player _team2 = null;
	          ^^^^^^^^
L2Player cannot be resolved to a type
----------
22. ERROR in \UndergroundTemplate.java (at line 44)
	protected L2Player _team3 = null;
	          ^^^^^^^^
L2Player cannot be resolved to a type
----------
23. ERROR in \UndergroundTemplate.java (at line 45)
	protected L2Player _team4 = null;
	          ^^^^^^^^
L2Player cannot be resolved to a type
----------
24. ERROR in \UndergroundTemplate.java (at line 47)
	protected ArrayList<L2Player> _teamsLive = new ArrayList<L2Player>();
	                    ^^^^^^^^
L2Player cannot be resolved to a type
----------
25. ERROR in \UndergroundTemplate.java (at line 47)
	protected ArrayList<L2Player> _teamsLive = new ArrayList<L2Player>();
	                                                         ^^^^^^^^
L2Player cannot be resolved to a type
----------
26. ERROR in \UndergroundTemplate.java (at line 49)
	protected L2Zone _zone;
	          ^^^^^^
L2Zone cannot be resolved to a type
----------
27. ERROR in \UndergroundTemplate.java (at line 54)
	Announcements.getInstance().announceToAll(text, Say2C.CRITICAL_ANNOUNCEMENT);
	                                                ^^^^^
Say2C cannot be resolved
----------
28. ERROR in \UndergroundTemplate.java (at line 67)
	public void template_create(L2Player player)
	                            ^^^^^^^^
L2Player cannot be resolved to a type
----------
29. ERROR in \UndergroundTemplate.java (at line 75)
	public void template_register(L2Player player)
	                              ^^^^^^^^
L2Player cannot be resolved to a type
----------
30. ERROR in \UndergroundTemplate.java (at line 83)
	public void template_check(L2Player player, String[] var)
	                           ^^^^^^^^
L2Player cannot be resolved to a type
----------
31. ERROR in \UndergroundTemplate.java (at line 133)
	player.sendPacket(Msg.YOU_DO_NOT_HAVE_ENOUGH_ADENA);
	                  ^^^
Msg cannot be resolved
----------
32. ERROR in \UndergroundTemplate.java (at line 137)
	_creator = player;
	^^^^^^^^
_creator cannot be resolved
----------
33. ERROR in \UndergroundTemplate.java (at line 138)
	_creator.reduceAdena(_price);
	^^^^^^^^
_creator cannot be resolved
----------
34. ERROR in \UndergroundTemplate.java (at line 140)
	_team1 = place == 1 ? _creator : null;
	^^^^^^
_team1 cannot be resolved
----------
35. ERROR in \UndergroundTemplate.java (at line 140)
	_team1 = place == 1 ? _creator : null;
	                      ^^^^^^^^
_creator cannot be resolved
----------
36. ERROR in \UndergroundTemplate.java (at line 141)
	_team2 = place == 2 ? _creator : null;
	^^^^^^
_team2 cannot be resolved
----------
37. ERROR in \UndergroundTemplate.java (at line 141)
	_team2 = place == 2 ? _creator : null;
	                      ^^^^^^^^
_creator cannot be resolved
----------
38. ERROR in \UndergroundTemplate.java (at line 142)
	_team3 = place == 3 ? _creator : null;
	^^^^^^
_team3 cannot be resolved
----------
39. ERROR in \UndergroundTemplate.java (at line 142)
	_team3 = place == 3 ? _creator : null;
	                      ^^^^^^^^
_creator cannot be resolved
----------
40. ERROR in \UndergroundTemplate.java (at line 143)
	_team4 = place == 4 ? _creator : null;
	^^^^^^
_team4 cannot be resolved
----------
41. ERROR in \UndergroundTemplate.java (at line 143)
	_team4 = place == 4 ? _creator : null;
	                      ^^^^^^^^
_creator cannot be resolved
----------
42. ERROR in \UndergroundTemplate.java (at line 147)
	sayToAll(_manager + _creator.getName() + " ╤Б╨╛╨╖╨┤╨░╨╗ ╨▒╨╛╨╣, ╤Б╤В╨░╨▓╨║╨░ " + _price + "╨░, ╨╜╨░╤З╨░╨╗╨╛ ╤З╨╡╤А╨╡╨╖ " + _timeToStart + " ╨╝╨╕╨╜");
	                    ^^^^^^^^
_creator cannot be resolved
----------
43. ERROR in \UndergroundTemplate.java (at line 148)
	executeTask("events.underground." + _className, "announce", new Object[0], 60000);
	^^^^^^^^^^^
The method executeTask(String, String, Object[], int) is undefined for the type UndergroundTemplate
----------
44. ERROR in \UndergroundTemplate.java (at line 151)
	public void template_register_check(L2Player player, String[] var)
	                                    ^^^^^^^^
L2Player cannot be resolved to a type
----------
45. ERROR in \UndergroundTemplate.java (at line 191)
	player.sendPacket(Msg.YOU_DO_NOT_HAVE_ENOUGH_ADENA);
	                  ^^^
Msg cannot be resolved
----------
46. ERROR in \UndergroundTemplate.java (at line 198)
	if(_team1 != null)
	   ^^^^^^
_team1 cannot be resolved
----------
47. ERROR in \UndergroundTemplate.java (at line 203)
	_team1 = player;
	^^^^^^
_team1 cannot be resolved
----------
48. ERROR in \UndergroundTemplate.java (at line 207)
	if(_team2 != null)
	   ^^^^^^
_team2 cannot be resolved
----------
49. ERROR in \UndergroundTemplate.java (at line 212)
	_team2 = player;
	^^^^^^
_team2 cannot be resolved
----------
50. ERROR in \UndergroundTemplate.java (at line 216)
	if(_team3 != null)
	   ^^^^^^
_team3 cannot be resolved
----------
51. ERROR in \UndergroundTemplate.java (at line 221)
	_team3 = player;
	^^^^^^
_team3 cannot be resolved
----------
52. ERROR in \UndergroundTemplate.java (at line 225)
	if(_team4 != null)
	   ^^^^^^
_team4 cannot be resolved
----------
53. ERROR in \UndergroundTemplate.java (at line 230)
	_team4 = player;
	^^^^^^
_team4 cannot be resolved
----------
54. ERROR in \UndergroundTemplate.java (at line 246)
	sayToAll(_manager + _creator.getName() + " ╤Б╨╛╨╖╨┤╨░╨╗ ╨▒╨╛╨╣, ╤Б╤В╨░╨▓╨║╨░ " + _price + "╨░" + ", ╨╜╨░╤З╨░╨╗╨╛ ╤З╨╡╤А╨╡╨╖ " + _timeToStart + " ╨╝╨╕╨╜");
	                    ^^^^^^^^
_creator cannot be resolved
----------
55. ERROR in \UndergroundTemplate.java (at line 247)
	executeTask("events.underground." + _className, "announce", new Object[0], 60000);
	^^^^^^^^^^^
The method executeTask(String, String, Object[], int) is undefined for the type UndergroundTemplate
----------
56. ERROR in \UndergroundTemplate.java (at line 249)
	else if(getTeamsLiveList().size() >= 2)
	        ^^^^^^^^^^^^^^^^
The method getTeamsLiveList() is undefined for the type UndergroundTemplate
----------
57. ERROR in \UndergroundTemplate.java (at line 252)
	executeTask("events.underground." + _className, "prepare", new Object[0], 5000);
	^^^^^^^^^^^
The method executeTask(String, String, Object[], int) is undefined for the type UndergroundTemplate
----------
58. ERROR in \UndergroundTemplate.java (at line 263)
	public int getTeamLiveCount(L2Player team)
	                            ^^^^^^^^
L2Player cannot be resolved to a type
----------
59. ERROR in \UndergroundTemplate.java (at line 268)
	for(L2Player player : team.getParty().getPartyMembers())
	    ^^^^^^^^
L2Player cannot be resolved to a type
----------
60. ERROR in \UndergroundTemplate.java (at line 274)
	public ArrayList<L2Player> getTeamsLiveList()
	                 ^^^^^^^^
L2Player cannot be resolved to a type
----------
61. ERROR in \UndergroundTemplate.java (at line 276)
	ArrayList<L2Player> list = new ArrayList<L2Player>();
	          ^^^^^^^^
L2Player cannot be resolved to a type
----------
62. ERROR in \UndergroundTemplate.java (at line 276)
	ArrayList<L2Player> list = new ArrayList<L2Player>();
	                                         ^^^^^^^^
L2Player cannot be resolved to a type
----------
63. ERROR in \UndergroundTemplate.java (at line 277)
	if(getTeamLiveCount(_team1) >= 7)
	                    ^^^^^^
_team1 cannot be resolved
----------
64. ERROR in \UndergroundTemplate.java (at line 278)
	list.add(_team1);
	         ^^^^^^
_team1 cannot be resolved
----------
65. ERROR in \UndergroundTemplate.java (at line 279)
	if(getTeamLiveCount(_team2) >= 7)
	                    ^^^^^^
_team2 cannot be resolved
----------
66. ERROR in \UndergroundTemplate.java (at line 280)
	list.add(_team2);
	         ^^^^^^
_team2 cannot be resolved
----------
67. ERROR in \UndergroundTemplate.java (at line 281)
	if(getTeamLiveCount(_team3) >= 7)
	                    ^^^^^^
_team3 cannot be resolved
----------
68. ERROR in \UndergroundTemplate.java (at line 282)
	list.add(_team3);
	         ^^^^^^
_team3 cannot be resolved
----------
69. ERROR in \UndergroundTemplate.java (at line 283)
	if(getTeamLiveCount(_team4) >= 7)
	                    ^^^^^^
_team4 cannot be resolved
----------
70. ERROR in \UndergroundTemplate.java (at line 284)
	list.add(_team4);
	         ^^^^^^
_team4 cannot be resolved
----------
71. ERROR in \UndergroundTemplate.java (at line 288)
	public boolean isRegistered(L2Player player)
	                            ^^^^^^^^
L2Player cannot be resolved to a type
----------
72. ERROR in \UndergroundTemplate.java (at line 290)
	if(_team1 != null && _team1.getParty() != null && _team1.getParty() == player.getParty())
	   ^^^^^^
_team1 cannot be resolved
----------
73. ERROR in \UndergroundTemplate.java (at line 290)
	if(_team1 != null && _team1.getParty() != null && _team1.getParty() == player.getParty())
	                     ^^^^^^
_team1 cannot be resolved
----------
74. ERROR in \UndergroundTemplate.java (at line 290)
	if(_team1 != null && _team1.getParty() != null && _team1.getParty() == player.getParty())
	                                                  ^^^^^^
_team1 cannot be resolved
----------
75. ERROR in \UndergroundTemplate.java (at line 292)
	if(_team2 != null && _team2.getParty() != null && _team2.getParty() == player.getParty())
	   ^^^^^^
_team2 cannot be resolved
----------
76. ERROR in \UndergroundTemplate.java (at line 292)
	if(_team2 != null && _team2.getParty() != null && _team2.getParty() == player.getParty())
	                     ^^^^^^
_team2 cannot be resolved
----------
77. ERROR in \UndergroundTemplate.java (at line 292)
	if(_team2 != null && _team2.getParty() != null && _team2.getParty() == player.getParty())
	                                                  ^^^^^^
_team2 cannot be resolved
----------
78. ERROR in \UndergroundTemplate.java (at line 294)
	if(_team3 != null && _team3.getParty() != null && _team3.getParty() == player.getParty())
	   ^^^^^^
_team3 cannot be resolved
----------
79. ERROR in \UndergroundTemplate.java (at line 294)
	if(_team3 != null && _team3.getParty() != null && _team3.getParty() == player.getParty())
	                     ^^^^^^
_team3 cannot be resolved
----------
80. ERROR in \UndergroundTemplate.java (at line 294)
	if(_team3 != null && _team3.getParty() != null && _team3.getParty() == player.getParty())
	                                                  ^^^^^^
_team3 cannot be resolved
----------
81. ERROR in \UndergroundTemplate.java (at line 296)
	if(_team4 != null && _team4.getParty() != null && _team4.getParty() == player.getParty())
	   ^^^^^^
_team4 cannot be resolved
----------
82. ERROR in \UndergroundTemplate.java (at line 296)
	if(_team4 != null && _team4.getParty() != null && _team4.getParty() == player.getParty())
	                     ^^^^^^
_team4 cannot be resolved
----------
83. ERROR in \UndergroundTemplate.java (at line 296)
	if(_team4 != null && _team4.getParty() != null && _team4.getParty() == player.getParty())
	                                                  ^^^^^^
_team4 cannot be resolved
----------
84. ERROR in \UndergroundTemplate.java (at line 306)
	_teamsLive = getTeamsLiveList();
	^^^^^^^^^^
_teamsLive cannot be resolved
----------
85. ERROR in \UndergroundTemplate.java (at line 306)
	_teamsLive = getTeamsLiveList();
	             ^^^^^^^^^^^^^^^^
The method getTeamsLiveList() is undefined for the type UndergroundTemplate
----------
86. ERROR in \UndergroundTemplate.java (at line 308)
	if(_teamsLive.size() < 2)
	   ^^^^^^^^^^
_teamsLive cannot be resolved
----------
87. ERROR in \UndergroundTemplate.java (at line 324)
	executeTask("events.underground." + _className, "start", new Object[0], 15000);
	^^^^^^^^^^^
The method executeTask(String, String, Object[], int) is undefined for the type UndergroundTemplate
----------
88. ERROR in \UndergroundTemplate.java (at line 338)
	executeTask("events.underground." + _className, "timeOut", new Object[0], 180000);
	^^^^^^^^^^^
The method executeTask(String, String, Object[], int) is undefined for the type UndergroundTemplate
----------
89. ERROR in \UndergroundTemplate.java (at line 344)
	for(L2Object obj : _zone.getObjects())
	                   ^^^^^
_zone cannot be resolved
----------
90. ERROR in \UndergroundTemplate.java (at line 345)
	if(obj != null && obj.isPlayer())
	                      ^^^^^^^^
The method isPlayer() is undefined for the type L2Object
----------
91. ERROR in \UndergroundTemplate.java (at line 346)
	teleportToArenaSpawn((L2Player) obj);
	                      ^^^^^^^^
L2Player cannot be resolved to a type
----------
92. ERROR in \UndergroundTemplate.java (at line 351)
	L2Skill revengeSkill = SkillTable.getInstance().getInfo(L2Skill.SKILL_RAID_CURSE, 1);
	                       ^^^^^^^^^^
SkillTable cannot be resolved
----------
93. ERROR in \UndergroundTemplate.java (at line 365)
	for(L2Player team : _teamsLive)
	    ^^^^^^^^
L2Player cannot be resolved to a type
----------
94. ERROR in \UndergroundTemplate.java (at line 378)
	if(_team1 != null && _team1.getParty() != null)
	   ^^^^^^
_team1 cannot be resolved
----------
95. ERROR in \UndergroundTemplate.java (at line 412)
	public void teleportToArenaSpawn(L2Character cha)
	                                 ^^^^^^^^^^^
L2Character cannot be resolved to a type
----------
96. ERROR in \UndergroundTemplate.java (at line 432)
	for(L2Player team : _teamsLive)
	    ^^^^^^^^
L2Player cannot be resolved to a type
----------
97. ERROR in \UndergroundTemplate.java (at line 441)
	for(L2Player team : _teamsLive)
	    ^^^^^^^^
L2Player cannot be resolved to a type
----------
98. ERROR in \UndergroundTemplate.java (at line 570)
	public class ZoneListener extends L2ZoneEnterLeaveListener
	                                  ^^^^^^^^^^^^^^^^^^^^^^^^
L2ZoneEnterLeaveListener cannot be resolved to a type
----------
99. ERROR in \UndergroundTemplate.java (at line 573)
	public void objectEntered(L2Zone zone, L2Object object)
	                          ^^^^^^
L2Zone cannot be resolved to a type
----------
100. ERROR in \UndergroundTemplate.java (at line 581)
	public void objectLeaved(L2Zone zone, L2Object object)
	                         ^^^^^^
L2Zone cannot be resolved to a type
----------
100 problems (100 errors)Syntax error on token "Invalid Character", delete this token
Functions cannot be resolved to a type
ScriptFile cannot be resolved to a type
L2ZoneEnterLeaveListener cannot be resolved to a type
The import net.sf.l2j.ext cannot be resolved
The import net.sf.l2j.ext cannot be resolved
The import net.sf.l2j.ext cannot be resolved
The import net.sf.l2j.gameserver.cache.Msg cannot be resolved
The import net.sf.l2j.gameserver.clientpackets cannot be resolved
The import net.sf.l2j.gameserver.model.L2Character cannot be resolved
The import net.sf.l2j.gameserver.model.L2Playable 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.tables cannot be resolved
The import net.sf.l2j.util.Location cannot be resolved
L2Player cannot be resolved to a type
L2Player cannot be resolved to a type
Location cannot be resolved to a type
L2Player cannot be resolved to a type
Location cannot be resolved to a type
L2Player cannot be resolved to a type
Location cannot be resolved to a type
L2Player cannot be resolved to a type
Location cannot be resolved to a type
L2Player 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
L2Player cannot be resolved to a type
L2Character cannot be resolved to a type
L2Player cannot be resolved to a type
L2Player cannot be resolved to a type
L2Player cannot be resolved to a type
L2Player 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
The method getPlayer() is undefined for the type net.sf.l2j.gameserver.model.L2Object
L2Player cannot be resolved to a type
The method getPlayer() is undefined for the type net.sf.l2j.gameserver.model.L2Object
L2Playable cannot be resolved to a type
L2Playable cannot be resolved to a type
L2Player cannot be resolved to a type
Say2C cannot be resolved
Msg cannot be resolved
_creator cannot be resolved
_creator cannot be resolved
_team1 cannot be resolved
_creator cannot be resolved
_team2 cannot be resolved
_creator cannot be resolved
_team3 cannot be resolved
_creator cannot be resolved
_team4 cannot be resolved
_creator cannot be resolved
_creator cannot be resolved
The method executeTask(java.lang.String, java.lang.String, java.lang.Object[], int) is undefined for the type events.underground.UndergroundTemplate
Msg cannot be resolved
_team1 cannot be resolved
_team1 cannot be resolved
_team2 cannot be resolved
_team2 cannot be resolved
_team3 cannot be resolved
_team3 cannot be resolved
_team4 cannot be resolved
_team4 cannot be resolved
_creator cannot be resolved
The method executeTask(java.lang.String, java.lang.String, java.lang.Object[], int) is undefined for the type events.underground.UndergroundTemplate
The method getTeamsLiveList() is undefined for the type events.underground.UndergroundTemplate
The method executeTask(java.lang.String, java.lang.String, java.lang.Object[], int) is undefined for the type events.underground.UndergroundTemplate
L2Player cannot be resolved to a type
L2Player cannot be resolved to a type
L2Player cannot be resolved to a type
_team1 cannot be resolved
_team1 cannot be resolved
_team2 cannot be resolved
_team2 cannot be resolved
_team3 cannot be resolved
_team3 cannot be resolved
_team4 cannot be resolved
_team4 cannot be resolved
_team1 cannot be resolved
_team1 cannot be resolved
_team1 cannot be resolved
_team2 cannot be resolved
_team2 cannot be resolved
_team2 cannot be resolved
_team3 cannot be resolved
_team3 cannot be resolved
_team3 cannot be resolved
_team4 cannot be resolved
_team4 cannot be resolved
_team4 cannot be resolved
_teamsLive cannot be resolved
The method getTeamsLiveList() is undefined for the type events.underground.UndergroundTemplate
_teamsLive cannot be resolved
The method executeTask(java.lang.String, java.lang.String, java.lang.Object[], int) is undefined for the type events.underground.UndergroundTemplate
The method executeTask(java.lang.String, java.lang.String, java.lang.Object[], int) is undefined for the type events.underground.UndergroundTemplate
_zone cannot be resolved
The method isPlayer() is undefined for the type net.sf.l2j.gameserver.model.L2Object
L2Player cannot be resolved to a type
SkillTable cannot be resolved
L2Skill.SKILL_RAID_CURSE cannot be resolved
L2Player cannot be resolved to a type
_teamsLive cannot be resolved
L2Player cannot be resolved to a type
L2Player cannot be resolved to a type
_teamsLive cannot be resolved
L2Player cannot be resolved to a type
L2Skill.SKILL_RAID_CURSE cannot be resolved
L2Skill.SKILL_RAID_CURSE cannot be resolved
_team1 cannot be resolved
_team1 cannot be resolved
L2Player cannot be resolved to a type
_team1 cannot be resolved
_team1point cannot be resolved
_team1point cannot be resolved
_team2 cannot be resolved
_team2 cannot be resolved
L2Player cannot be resolved to a type
_team2 cannot be resolved
_team2point cannot be resolved
_team2point cannot be resolved
_team3 cannot be resolved
_team3 cannot be resolved
L2Player cannot be resolved to a type
_team3 cannot be resolved
_team3point cannot be resolved
_team3point cannot be resolved
_team4 cannot be resolved
_team4 cannot be resolved
L2Player cannot be resolved to a type
_team4 cannot be resolved
_team4point cannot be resolved
_team4point cannot be resolved
_zone cannot be resolved
L2Player cannot be resolved to a type
_teamsLive cannot be resolved
L2Player cannot be resolved to a type
L2Player cannot be resolved to a type
_teamsLive cannot be resolved
L2Player cannot be resolved to a type
_team1 cannot be resolved
_team2 cannot be resolved
_team3 cannot be resolved
_team4 cannot be resolved
Failed executing script: C:\server\gameserver\data\scripts\events\underground\UndergroundTemplate.java. See UndergroundTemplate.java.error.log for details.
в чем проблема ? что я нетак зделал...

Последний раз редактировалось HeavyMetaJI; 22.05.2011 в 16:49. Причина: Добавлено сообщение
HeavyMetaJI вне форума Ответить с цитированием