How to change the color of teleport bubbles, shadow strike?
|
|
dancerek | Дата: Четверг, 03.05.2012, 23:57 | Сообщение # 1 |
- Сообщения: 65
- Награды: 0
- Замечания:
|
The questions are: 1. How to change the color of teleport bubbles? Normal is white but I want to make some grey bubbles. 2. How to change te color of shadow strike and carrion bettles? Normal it is white color but Ii want to make shadow strike red and carrion bettles green. 3. How to change te color of teleport cylinder? I want to make it colourful - I want to cylinder change color with every teleport.
Сообщение отредактировал dancerek - Пятница, 04.05.2012, 00:00 |
|
| |
Sasha13840 | Дата: Пятница, 04.05.2012, 01:22 | Сообщение # 2 |
- Сообщения: 384
- Награды: 7
- Замечания:
|
dancerek, I translate your text into Russian
Вопросы: 1. Как изменить цвет пузырьков,которые вылетаю при телепортации человека? Нормальный цвет белый,но я хочу,чтобы некоторые были серыми. 2.Как изменить цвета у навыков "скрытый удар" и "трупоеды"? Нормальный цвет белый,но я хочу сделать "скрытый удар" красным и "трупоеды" зеленым. 3.Как изменить цвет цилиндра телепорта? Я хочу сделать его красочным - я хочу,чтобы цилиндр менял цвет после каждой телепортации.
Пункт #3 я не уверен,что правильно перевел.И вообще я не понимаю,что он хочет в нем спросить.
Сообщение отредактировал KinD - Пятница, 04.05.2012, 19:22 |
|
| |
SMaster | Дата: Пятница, 04.05.2012, 15:59 | Сообщение # 3 |
- Сообщения: 2189
- Награды: 46
- Замечания:
|
Quote (dancerek) 1. How to change the color of teleport bubbles? Normal is white but I want to make some grey bubbles.
Draw new sprite or add new effect.
Create_TE_SPRITETRAIL( vStartOrigin, vOrigin, g_iSprites[SPR_FLARE], 30, 10, 1, 50, 10 ); Create_TE_SPRITETRAIL( vStartOrigin, vOrigin, g_iSprites[new sprite], 30, 10, 2, 50, 10 );
Result:
Наша группа вконтакте http://vk.com/nano_world_cs
Контакты: ICQ 607786179 Skype xonahead
|
|
| |
SMaster | Дата: Пятница, 04.05.2012, 16:10 | Сообщение # 4 |
- Сообщения: 2189
- Награды: 46
- Замечания:
|
Quote (dancerek) 2. How to change te color of shadow strike and carrion bettles? Normal it is white color but Ii want to make shadow strike red and carrion bettles green.
Shadow strike Replace sprite: copy( g_szSprites[SPR_SHADOWSTRIKE] , 63, "sprites/animglow01.spr" );
Carrion bettles Replace sprite: copy( g_szSprites[SPR_BEETLE], 63, "sprites/agrunt1.spr" );
Наша группа вконтакте http://vk.com/nano_world_cs
Контакты: ICQ 607786179 Skype xonahead
|
|
| |
SMaster | Дата: Пятница, 04.05.2012, 16:18 | Сообщение # 5 |
- Сообщения: 2189
- Награды: 46
- Замечания:
|
Quote (dancerek) 3. How to change te color of teleport cylinder? I want to make it colourful - I want to cylinder change color with every teleport.
Replace color on random_num(0,255) i.e.
Create_TE_BEAMCYLINDER( vOldLocation, vCenterOrigin, vAxisOrigin, g_iSprites[SPR_SHOCKWAVE], 0, 0, 3, 60, 0, 255, 255, 255, 255, 0 ); on Create_TE_BEAMCYLINDER( vOldLocation, vCenterOrigin, vAxisOrigin, g_iSprites[SPR_SHOCKWAVE], 0, 0, 3, 60, 0,random_num(0,255), random_num(0,255), random_num(0,255), 255, 0 );
Наша группа вконтакте http://vk.com/nano_world_cs
Контакты: ICQ 607786179 Skype xonahead
|
|
| |
dancerek | Дата: Пятница, 04.05.2012, 19:21 | Сообщение # 6 |
- Сообщения: 65
- Награды: 0
- Замечания:
|
Ok fine, but where I can find ready sprites for war3ft? Do I have to make them by myself? If yes, how do do it?
|
|
| |
SMaster | Дата: Пятница, 04.05.2012, 19:31 | Сообщение # 7 |
- Сообщения: 2189
- Награды: 46
- Замечания:
|
dancerek, Use "Sprite Wizard"
Наша группа вконтакте http://vk.com/nano_world_cs
Контакты: ICQ 607786179 Skype xonahead
|
|
| |
dancerek | Дата: Пятница, 04.05.2012, 20:26 | Сообщение # 8 |
- Сообщения: 65
- Награды: 0
- Замечания:
|
Oh, thanks. I will have problems becouse it in Russian language, but I will try to do some sprites ;)
|
|
| |