abc(x, y, z) = abc_proto1(x, y, z)
abc(x, y) = abc_proto2(x, y)//Или abc_proto1(x, y, 0)
abc(x) = abc_proto3(x)//abc_proto1(x, 0, 0)
abc() = abc_proto4()//abc_proto1(0, 0, 0)
}
Форум Записи участника |
Результаты поиска |
SirNikolas#16 | Тема: Наработки для гуишниковРазные функции с одинаковыми именами. На cJASS реализуется следующим образом:
Code define { abc(x, y, z) = abc_proto1(x, y, z) abc(x, y) = abc_proto2(x, y)//Или abc_proto1(x, y, 0) abc(x) = abc_proto3(x)//abc_proto1(x, 0, 0) abc() = abc_proto4()//abc_proto1(0, 0, 0) } "I will make this the first approved cJass-only resource here on the Hive" - Bribe about ALL.
|
SirNikolas#17 | Тема: Наработки для гуишниковQuote (Ty3uK) 1) Движение дамми на определенное расстояние: Code call MoveDummy(юнит, расстояние, скорость, удалять ли дамми в конце) Code call MoveDummy(юнит, скорость, удалять ли дамми в конце) Code call MoveDummy(юнит, расстояние) Code call MoveDummy(юнит) "I will make this the first approved cJass-only resource here on the Hive" - Bribe about ALL.
|
SirNikolas#18 | Тема: Arena Multiboard (Jass 2 / cJass)Quote (Simplar) Используй Вексорианскую GetPlayerNameColored: "I will make this the first approved cJass-only resource here on the Hive" - Bribe about ALL.
|
SirNikolas#19 | Тема: jass[jass]function abc takes nothing returns nothing
local unit u = GetTriggerUnit() local integer i = 0 loop call KillUnit(u) exitwhen i == 10 set i = i + 1 endloop set u = null endfunction[/jass] Добавлено (28.12.11, 14:21) Добавлено (28.12.11, 14:23) Добавлено (28.12.11, 14:29) Добавлено (28.12.11, 14:30) Добавлено (28.12.11, 14:38) Добавлено (28.12.11, 14:55) "I will make this the first approved cJass-only resource here on the Hive" - Bribe about ALL.
|
SirNikolas#20 | Тема: jass[jass]true false this null DEBUG FUNCNAME COUNTER
code handle agent widget eventid[/jass] Добавлено (28.12.11, 15:02) Quote (CoRVu$) тест текста. чё будет? Code Syntax error (line 1): Illegal char 'т' Добавлено (28.12.11, 15:03) Добавлено (28.12.11, 15:05) Quote (SirNikolas) DEBUG Добавлено (28.12.11, 15:07) Добавлено (28.12.11, 15:08) Добавлено (28.12.11, 15:09) Добавлено (28.12.11, 15:39) Добавлено (28.12.11, 15:40) "I will make this the first approved cJass-only resource here on the Hive" - Bribe about ALL.
|
SirNikolas#21 | Тема: jass[jass]function DoNothingBJ takes nothing returns nothing
call CommentString("Проверка подсветки BJ и строк") //А также комментариев call DoNothing() endfunction[/jass] Добавлено (29.12.11, 09:43) Добавлено (29.12.11, 09:47) Добавлено (29.12.11, 09:51) Добавлено (29.12.11, 11:21) Добавлено (29.12.11, 11:24) Добавлено (29.12.11, 11:59) Добавлено (29.12.11, 12:53) Добавлено (29.12.11, 12:55) Добавлено (29.12.11, 12:56) Добавлено (29.12.11, 13:13) Добавлено (29.12.11, 13:19) Добавлено (29.12.11, 13:50) Добавлено (29.12.11, 14:14) Добавлено (29.12.11, 14:16) Добавлено (29.12.11, 14:17) "I will make this the first approved cJass-only resource here on the Hive" - Bribe about ALL.
|
SirNikolas#22 | Тема: jassQuote (Spirit_of_Dragon) и имена функций и методов непривычно подсвечиваются т_т native GetUnitGoldCost takes integer unitid returns integer native GetUnitWoodCost takes integer unitid returns integer native GetUnitBuildTime takes integer unitid returns integer native IsTowered takes unit target returns boolean native CreepsOnMap takes nothing returns boolean native UnitAlive takes unit id returns boolean[/jass]Ty3uK, добавь уже эти нативки. "I will make this the first approved cJass-only resource here on the Hive" - Bribe about ALL.
|
SirNikolas#23 | Тема: jassКстати, надо сделать, чтоб так же подсвечивались create, destroy, allocate и deallocate.
"I will make this the first approved cJass-only resource here on the Hive" - Bribe about ALL.
|
SirNikolas#24 | Тема: DictionaryВо-первых, потому что в C# данный класс называется "Dictionary", а не "Словарь". Во-вторых, потому что в JASS запрещено использовать в названиях кириллицу. В-третьих, потому что образованные программисты знают английский. В-четвертых, потому что я собираюсь выложить его на Хайв. В-пятых, потому что так принято. В-шестых, потому что, возможно, ты не прочитал первый пост, а если и прочитал, то не понял. Еще вопросы? "I will make this the first approved cJass-only resource here on the Hive" - Bribe about ALL.
|
SirNikolas#25 | Тема: jass[jass]onInit onDestroy create destroy allocate deallocate evaluate execute super name SCOPE_PREFIX SCOPE_PRIVATE[/jass]
Добавлено (05.01.12, 08:15) "I will make this the first approved cJass-only resource here on the Hive" - Bribe about ALL.
|
SirNikolas#26 | Тема: jass[jass] //! zinc
library TestOfUsingTab { function onInit() { BJDebugMsg("OMG!!!"); } } library TestOfUsingSpaces { function onInit() { BJDebugMsg("OMG в квадрате"); } } //! endzinc[/jass] Добавлено (07.01.12, 11:35) Добавлено (07.01.12, 11:37) "I will make this the first approved cJass-only resource here on the Hive" - Bribe about ALL.
|
SirNikolas#27 | Тема: [ОПРОС] Иконка для Берсерка3. К карте с доминирующим дизайном Фкоффа лучше всего подойдет именно его работа (Кэп).
Можно было бы поставить первую, если бы она не была так ужасно перекрашена. "I will make this the first approved cJass-only resource here on the Hive" - Bribe about ALL.
|
SirNikolas#28 | Тема: Преобразование урона в золотоQuote (MEGA) [jass]call SetTextTagSuspendedBJ( GetLastCreatedTextTag(), false )[/jass] Вместо кучи проверок на игрока лучше создать строковый массив, забить его значениями типа { "|cffff0000", "|cff0000ff", ... } и устанавливать текст на Color[(Player number of (Owner of (Damage source)))] + String(Integer((Damage taken))). Quote (MEGA) баггов не обнаружено. "I will make this the first approved cJass-only resource here on the Hive" - Bribe about ALL.
|
SirNikolas#29 | Тема: Преобразование урона в золотоQuote (MEGA) надо чё-нить придумать. "I will make this the first approved cJass-only resource here on the Hive" - Bribe about ALL.
|
SirNikolas#30 | Тема: Часто задаваемые вопросыЭто карта для мультиплеера? Если нет, я могу легко сделать Save-Load. Если да, придется постараться, но тоже реально.
Quote (CoRVu$) Требуется JNPG! "I will make this the first approved cJass-only resource here on the Hive" - Bribe about ALL.
|
| ||