Wasp Mod V2 - Форум Игроделов
Чт, 09 Май 2024, 17:54 
 
Приветствую Вас Гость Главная | Регистрация | Вход
Новые сообщения · Участники · Правила форума · Поиск · RSS ]
  • Страница 1 из 4
  • 1
  • 2
  • 3
  • 4
  • »
Форум Игроделов » FPS CREATOR COMMUNITY (СООБЩЕСТВО) » МОДЫ И ПАТЧИ » Wasp Mod V2 (Отличный Мод на свежих(!!) исходниках от 1.18.003)
Wasp Mod V2
ARSДата: Пт, 10 Дек 2010, 21:55 | Сообщение # 1
Нет аватара
Ограбил
 
Сообщений: 1034
Награды: 14
Репутация: 434
Статус: Offline
Вот список неполный список фичей, которые бросаются в глаза:

*Естесственно все фичи из 1.17 и 1.18.003
*Увеличение производдительности на 10%-80%
*Компасс из Horror mod(то есть на исходнике от kxnrb - автора ХМ)
*Ганспек-команды:
- IsTorch=x - запускает возможность вкл\выкл фонаря(ну, как в сталкере, проще говоря), если х=1
- TorchKey=x - вместо Х, пишем код клавиши, на которую будет включаться фонарь.
- TorchRange=х - дальность света фонаря.
- TorchRed=
- TorchGreen=
- TorchGreen=
Собственно, наличие красного, синего и зелёного пигментов в свете фонаря.Честно, пока не разобрался, либо регулируя значение от 255, либо ещё что-то, пока не работал.
- Gravitygun=x - оружие превращается в гравипушку.Левой - бросили предмет - правой, притянули к себе.Причём в Х, указываем, максимальное расстояние, на котором будет искаться предмет.
Подробнее тут:
http://forum.thegamecreators.com/?m=forum_view&t=178118&b=21
Мод пока на стадии ОБТ.
Ссылка на последнюю вторую бетту с мануалом:
http://ars-predator.nextmail.ru/WASPV2 Public beta 2.zip
Внимание! Мод для третьей бетты патча 1.18
http://forum.thegamecreators.com/?m=forum_view&b=21&t=176670&p=0 - бетку 1.18 качать оттуда.
WASP ModV2 - by The Scene Commander & S4Real.

Beta 2

This mod is based on the 118 Beta FPSC creator source code and was written with the intention of allowing faster FPSC games to be created. While this is still the aim, we are now moving onto adding additional features.

Note:Games built prior to FPSC V1.17 will most likely not run with this mod.

Object culling is handled automatically when activated, but can be controlled using the CullState command. This command can be used in any script, but for speed I recommend that should you wish to overide the engine's cull system that it's range is set in it's appear script. A sample appear script is included with this download.

NOTE:WASP culling only works on Dynamic, mobile objects for this beta and to use WASP mod culling you will need to turn it on using Cullmode=1. A script is included for this.

New FPI actions

Cullmode=x where

0=Use global standard culling

1=Use WASP culling and access cullstate commands.

Cullstate= x where

x=0, use full culling on object, this is the default

x=1, use standard FPSC culling on object

x=2, Always show if on screen, can be thought of as SHOWOBJECT

x=3, Always hide regardless of range, can be thought of as HIDEOBJECT

x=???? cull object at ??? distance, where ??? = 100 for each segment.

Note: object within 150 automatically displayed regardless of this value, unless hidden by CULLSTATE=3

Flashlighton =turn on player flashlight from player cam
Flashlightoff=turn off player flashlight from player cam
Flashlightrange=range of player flashlight from player cam
Flashlightred=red element of player flashlight from player cam
Flashlightgreen=green element of player flashlight from player cam
Flashlightblue=blue element of player flashlight from player cam
Randomize = randomize the random seed from the timer.
Rnd X or Rnd variable name x = Produce a random number between 0 and x and add to either the current default local/global variable or to specified variable name.
Abs or Abs variable name = force current local/global or name variable to positive.
Compasson = Turns on the compass
Compassoff= Turns off the compass
CompassX = Compass x cordinate.
CompassY = Compass y cordinate
Compassspin = Sets the compass to spin
Needlespin = Sets the needle to spin
Arrowkeys=X - toggles use of the arrow keys for movement
Peekkey= X - toggles use of the the peekkeys
Crouchkey= X - toggles use of the crouchkey
Jumpkey= X - toggles use of the jumpkey
Walkkey=X - toggles use of the walkkey for movement
Push = Empty or name$ : Pushes either the current used variable or the named variable onto a reverse polish notation stack
Pop = Empty or name$ : Pops the top number from the stack and places it in current variable or named variable
AddRawText = String, Adds the string to the current RawText file
AddRawVar= Empty or name$, adds either the current variable or the named variable to the RawText file.
Armon = x 1=Turn on body armour, 0=No body armour, damage is deducted from armour before health.
SetArmx=x, X cord of the armour display
SetArmy=x, Y cord of the armour display
SetArm=x, Sets body armour value to X
ArmInc=X, add X to your current body armour
ArmDec=X, subtract X from your current armour.

New FPI conditions.

enemywithin=x y - X is the team whose enemies you want to find, Y is the distance
enemyfurther=x y - X is the team whose enemies you want to find, Y is the distance
allywithin=x y - X is the team whose allies you want to find, Y is the distance
allywithin=x y - X is the team whose allies you want to find, Y is the distance
teammemberwithin=x y - X is the team you want to find, Y is the distance
teammemberfurther=x y - X is the team you want to find, Y is the distance
entitywithin=x y - X is the name of the entity, Y is the distance within
entityfurther=x y - X is the name of the entity, Y is the distance further
entityinzone=x y - X is the name of the entity, Y is 0 or 1, 0 is not in zone, 1 is in zone

New Gun Specs

IsTorch=x 1=weapon has a flashlight attached
TorchKey=x scan code of key to toggle flashlight on/off
TorchRange=weapon flashlight range
TorchRed=Red Element of weapon flashlight
TorchGreen=Green Element of weapon flashlight
TorchBlue=Blue Element of weapon flashlight
Gravitygun=x Set's gun to act as a gravity gun with a range of X. In this mode, leftclick nudges objects, Rightclick picks objects up.

New Features

FPSC IP 4.0

At a users request and with all credit to knrxb for the code, I've added FPSC IP 4.0, this is most likey the only multi-player feature I'll be adding. I've no intention of adding flak, dynamic entites, or any other major multiplayer feature.

If you have any issues please report on the FPSC Forum's here

http://forum.thegamecreators.com/?m=forum_view&t=177429&b=21

Thank and Enjoy

The Scene Commander & S4Real.

 
СообщениеВот список неполный список фичей, которые бросаются в глаза:

*Естесственно все фичи из 1.17 и 1.18.003
*Увеличение производдительности на 10%-80%
*Компасс из Horror mod(то есть на исходнике от kxnrb - автора ХМ)
*Ганспек-команды:
- IsTorch=x - запускает возможность вкл\выкл фонаря(ну, как в сталкере, проще говоря), если х=1
- TorchKey=x - вместо Х, пишем код клавиши, на которую будет включаться фонарь.
- TorchRange=х - дальность света фонаря.
- TorchRed=
- TorchGreen=
- TorchGreen=
Собственно, наличие красного, синего и зелёного пигментов в свете фонаря.Честно, пока не разобрался, либо регулируя значение от 255, либо ещё что-то, пока не работал.
- Gravitygun=x - оружие превращается в гравипушку.Левой - бросили предмет - правой, притянули к себе.Причём в Х, указываем, максимальное расстояние, на котором будет искаться предмет.
Подробнее тут:
http://forum.thegamecreators.com/?m=forum_view&t=178118&b=21
Мод пока на стадии ОБТ.
Ссылка на последнюю вторую бетту с мануалом:
http://ars-predator.nextmail.ru/WASPV2 Public beta 2.zip
Внимание! Мод для третьей бетты патча 1.18
http://forum.thegamecreators.com/?m=forum_view&b=21&t=176670&p=0 - бетку 1.18 качать оттуда.
WASP ModV2 - by The Scene Commander & S4Real.

Beta 2

This mod is based on the 118 Beta FPSC creator source code and was written with the intention of allowing faster FPSC games to be created. While this is still the aim, we are now moving onto adding additional features.

Note:Games built prior to FPSC V1.17 will most likely not run with this mod.

Object culling is handled automatically when activated, but can be controlled using the CullState command. This command can be used in any script, but for speed I recommend that should you wish to overide the engine's cull system that it's range is set in it's appear script. A sample appear script is included with this download.

NOTE:WASP culling only works on Dynamic, mobile objects for this beta and to use WASP mod culling you will need to turn it on using Cullmode=1. A script is included for this.

New FPI actions

Cullmode=x where

0=Use global standard culling

1=Use WASP culling and access cullstate commands.

Cullstate= x where

x=0, use full culling on object, this is the default

x=1, use standard FPSC culling on object

x=2, Always show if on screen, can be thought of as SHOWOBJECT

x=3, Always hide regardless of range, can be thought of as HIDEOBJECT

x=???? cull object at ??? distance, where ??? = 100 for each segment.

Note: object within 150 automatically displayed regardless of this value, unless hidden by CULLSTATE=3

Flashlighton =turn on player flashlight from player cam
Flashlightoff=turn off player flashlight from player cam
Flashlightrange=range of player flashlight from player cam
Flashlightred=red element of player flashlight from player cam
Flashlightgreen=green element of player flashlight from player cam
Flashlightblue=blue element of player flashlight from player cam
Randomize = randomize the random seed from the timer.
Rnd X or Rnd variable name x = Produce a random number between 0 and x and add to either the current default local/global variable or to specified variable name.
Abs or Abs variable name = force current local/global or name variable to positive.
Compasson = Turns on the compass
Compassoff= Turns off the compass
CompassX = Compass x cordinate.
CompassY = Compass y cordinate
Compassspin = Sets the compass to spin
Needlespin = Sets the needle to spin
Arrowkeys=X - toggles use of the arrow keys for movement
Peekkey= X - toggles use of the the peekkeys
Crouchkey= X - toggles use of the crouchkey
Jumpkey= X - toggles use of the jumpkey
Walkkey=X - toggles use of the walkkey for movement
Push = Empty or name$ : Pushes either the current used variable or the named variable onto a reverse polish notation stack
Pop = Empty or name$ : Pops the top number from the stack and places it in current variable or named variable
AddRawText = String, Adds the string to the current RawText file
AddRawVar= Empty or name$, adds either the current variable or the named variable to the RawText file.
Armon = x 1=Turn on body armour, 0=No body armour, damage is deducted from armour before health.
SetArmx=x, X cord of the armour display
SetArmy=x, Y cord of the armour display
SetArm=x, Sets body armour value to X
ArmInc=X, add X to your current body armour
ArmDec=X, subtract X from your current armour.

New FPI conditions.

enemywithin=x y - X is the team whose enemies you want to find, Y is the distance
enemyfurther=x y - X is the team whose enemies you want to find, Y is the distance
allywithin=x y - X is the team whose allies you want to find, Y is the distance
allywithin=x y - X is the team whose allies you want to find, Y is the distance
teammemberwithin=x y - X is the team you want to find, Y is the distance
teammemberfurther=x y - X is the team you want to find, Y is the distance
entitywithin=x y - X is the name of the entity, Y is the distance within
entityfurther=x y - X is the name of the entity, Y is the distance further
entityinzone=x y - X is the name of the entity, Y is 0 or 1, 0 is not in zone, 1 is in zone

New Gun Specs

IsTorch=x 1=weapon has a flashlight attached
TorchKey=x scan code of key to toggle flashlight on/off
TorchRange=weapon flashlight range
TorchRed=Red Element of weapon flashlight
TorchGreen=Green Element of weapon flashlight
TorchBlue=Blue Element of weapon flashlight
Gravitygun=x Set's gun to act as a gravity gun with a range of X. In this mode, leftclick nudges objects, Rightclick picks objects up.

New Features

FPSC IP 4.0

At a users request and with all credit to knrxb for the code, I've added FPSC IP 4.0, this is most likey the only multi-player feature I'll be adding. I've no intention of adding flak, dynamic entites, or any other major multiplayer feature.

If you have any issues please report on the FPSC Forum's here

http://forum.thegamecreators.com/?m=forum_view&t=177429&b=21

Thank and Enjoy

The Scene Commander & S4Real.


Автор - ARS
Дата добавления - 10 Дек 2010 в 21:55
dploadДата: Пт, 10 Дек 2010, 22:49 | Сообщение # 2
 
Сообщений: 855
Награды: 18
Репутация: 676
Статус: Offline
Я так понял там есть Lod?
 
СообщениеЯ так понял там есть Lod?

Автор - dpload
Дата добавления - 10 Дек 2010 в 22:49
yanДата: Пт, 18 Фев 2011, 11:49 | Сообщение # 3
Радужный гриб
 
Сообщений: 3349
Награды: 13
Репутация: 707
Статус: Offline
ARS,
А на нем третье лицо можно сделать?
 
СообщениеARS,
А на нем третье лицо можно сделать?

Автор - yan
Дата добавления - 18 Фев 2011 в 11:49
Black_RifferДата: Пт, 18 Фев 2011, 18:57 | Сообщение # 4
 
Сообщений: 1947
Награды: 33
Репутация: 768
Статус: Offline
Quote (ARS)
New Gun Specs

IsTorch=x 1=weapon has a flashlight attached
TorchKey=x scan code of key to toggle flashlight on/off
TorchRange=weapon flashlight range
TorchRed=Red Element of weapon flashlight
TorchGreen=Green Element of weapon flashlight
TorchBlue=Blue Element of weapon flashlight
Gravitygun=x Set's gun to act as a gravity gun with a range of X. In this mode, leftclick nudges objects, Rightclick picks objects up.

Порадовало.

 
Сообщение
Quote (ARS)
New Gun Specs

IsTorch=x 1=weapon has a flashlight attached
TorchKey=x scan code of key to toggle flashlight on/off
TorchRange=weapon flashlight range
TorchRed=Red Element of weapon flashlight
TorchGreen=Green Element of weapon flashlight
TorchBlue=Blue Element of weapon flashlight
Gravitygun=x Set's gun to act as a gravity gun with a range of X. In this mode, leftclick nudges objects, Rightclick picks objects up.

Порадовало.


Автор - Black_Riffer
Дата добавления - 18 Фев 2011 в 18:57
Щавель63Дата: Сб, 19 Фев 2011, 16:03 | Сообщение # 5
CHIBBIS, окей, but i am remember! ^_^
 
Сообщений: 1001
Награды: 4
Репутация: 167
Статус: Offline
А что такое IP FPSC 4.0?

 
СообщениеА что такое IP FPSC 4.0?

Автор - Щавель63
Дата добавления - 19 Фев 2011 в 16:03
Black_RifferДата: Сб, 19 Фев 2011, 17:06 | Сообщение # 6
 
Сообщений: 1947
Награды: 33
Репутация: 768
Статус: Offline
Щавель63, добавляет возможности в мультиплеер
 
СообщениеЩавель63, добавляет возможности в мультиплеер

Автор - Black_Riffer
Дата добавления - 19 Фев 2011 в 17:06
Щавель63Дата: Сб, 19 Фев 2011, 17:15 | Сообщение # 7
CHIBBIS, окей, but i am remember! ^_^
 
Сообщений: 1001
Награды: 4
Репутация: 167
Статус: Offline
Так он же вроде платный...А мод бессплатный...

 
СообщениеТак он же вроде платный...А мод бессплатный...

Автор - Щавель63
Дата добавления - 19 Фев 2011 в 17:15
yanДата: Сб, 19 Фев 2011, 19:17 | Сообщение # 8
Радужный гриб
 
Сообщений: 3349
Награды: 13
Репутация: 707
Статус: Offline
Щавель63,
Юзай классный мод!
 
СообщениеЩавель63,
Юзай классный мод!

Автор - yan
Дата добавления - 19 Фев 2011 в 19:17
Щавель63Дата: Сб, 19 Фев 2011, 20:26 | Сообщение # 9
CHIBBIS, окей, but i am remember! ^_^
 
Сообщений: 1001
Награды: 4
Репутация: 167
Статус: Offline
ARS, обнови ссылки, там уже есть верссия 2.4 а у тебя 2.2)

 
СообщениеARS, обнови ссылки, там уже есть верссия 2.4 а у тебя 2.2)

Автор - Щавель63
Дата добавления - 19 Фев 2011 в 20:26
СкептикДата: Вс, 20 Фев 2011, 17:47 | Сообщение # 10
Мыслитель
 
Сообщений: 5860
Награды: 48
Репутация: 1731
Статус: Offline
Щавель63, бесплатный.

Фанат игр Max Payne и Fahrenheit.
 
СообщениеЩавель63, бесплатный.

Автор - Скептик
Дата добавления - 20 Фев 2011 в 17:47
yanДата: Вс, 20 Фев 2011, 17:56 | Сообщение # 11
Радужный гриб
 
Сообщений: 3349
Награды: 13
Репутация: 707
Статус: Offline
Дак на нём третье лицо можно или нет?
 
СообщениеДак на нём третье лицо можно или нет?

Автор - yan
Дата добавления - 20 Фев 2011 в 17:56
СкептикДата: Вс, 20 Фев 2011, 19:28 | Сообщение # 12
Мыслитель
 
Сообщений: 5860
Награды: 48
Репутация: 1731
Статус: Offline
yan, а смысл какой, если есть Феникс и ГМ?

Фанат игр Max Payne и Fahrenheit.
 
Сообщениеyan, а смысл какой, если есть Феникс и ГМ?

Автор - Скептик
Дата добавления - 20 Фев 2011 в 19:28
yanДата: Вс, 20 Фев 2011, 19:44 | Сообщение # 13
Радужный гриб
 
Сообщений: 3349
Награды: 13
Репутация: 707
Статус: Offline
Просто этот мод на 18патче работает.А с фениксом у меня сплошные глюки были.
 
СообщениеПросто этот мод на 18патче работает.А с фениксом у меня сплошные глюки были.

Автор - yan
Дата добавления - 20 Фев 2011 в 19:44
oswaldДата: Сб, 26 Фев 2011, 18:28 | Сообщение # 14
Нет аватара
 
Сообщений: 131
Награды: 10
Репутация: 138
Статус: Offline
Объясните мне пожалуйста на пальцах, почему не работает фонарик и прочие функции (стоит на 1.18.009) sad
 
СообщениеОбъясните мне пожалуйста на пальцах, почему не работает фонарик и прочие функции (стоит на 1.18.009) sad

Автор - oswald
Дата добавления - 26 Фев 2011 в 18:28
vladwolfmanДата: Сб, 26 Фев 2011, 19:01 | Сообщение # 15
 
Сообщений: 410
Награды: 12
Репутация: 184
Статус: Offline
мод сделан для 3 беты! Читай внимательней)

Моё Добро: Dendy, Sega Mega Drive 2, Sony Playstation(FAT),Sony Playstation 2 (FAT), Sony Playstation 3 (Super Slim 500Gb), Sony Playstation 4, PSP 3008, PS Vita WiFi.
 
Сообщениемод сделан для 3 беты! Читай внимательней)

Автор - vladwolfman
Дата добавления - 26 Фев 2011 в 19:01
oswaldДата: Пн, 07 Мар 2011, 19:31 | Сообщение # 16
Нет аватара
 
Сообщений: 131
Награды: 10
Репутация: 138
Статус: Offline
Не решает проблемы sad у кого фонарь на нем работает?
 
СообщениеНе решает проблемы sad у кого фонарь на нем работает?

Автор - oswald
Дата добавления - 07 Мар 2011 в 19:31
ScreamingДата: Пт, 11 Мар 2011, 16:15 | Сообщение # 17
ЙАЗЬ
 
Сообщений: 270
Награды: 1
Репутация: 84
Статус: Offline
можно в gunspec оружия добавить
Code
istorch=1
torchrange=5000
torchred=0
torchgreen=255
torchblue=255
torchkey=33

тогда будет оружие с фонариком

а можно простой фонарик таким скриптом

Code
:state=0,keypressed=33 1:flashlighton,state=3
:state=3,keypressed=33 0:state=1
:state=1,keypressed=33 1:flashlightoff,state=2
:state=2,keypressed=33 0:state=4
:state=4,keypressed=33 1:flashlighton,state=5
:state=5,keypressed=33 0:state=1

Ставим скрипт в триггер зону, нажимаем f и вуаля.

Цвета, дальность я не регулировал, поэтому сами сделаете.




Сообщение отредактировал Screaming - Пт, 11 Мар 2011, 16:16
 
Сообщениеможно в gunspec оружия добавить
Code
istorch=1
torchrange=5000
torchred=0
torchgreen=255
torchblue=255
torchkey=33

тогда будет оружие с фонариком

а можно простой фонарик таким скриптом

Code
:state=0,keypressed=33 1:flashlighton,state=3
:state=3,keypressed=33 0:state=1
:state=1,keypressed=33 1:flashlightoff,state=2
:state=2,keypressed=33 0:state=4
:state=4,keypressed=33 1:flashlighton,state=5
:state=5,keypressed=33 0:state=1

Ставим скрипт в триггер зону, нажимаем f и вуаля.

Цвета, дальность я не регулировал, поэтому сами сделаете.


Автор - Screaming
Дата добавления - 11 Мар 2011 в 16:15
random47Дата: Чт, 17 Мар 2011, 00:53 | Сообщение # 18
 
Сообщений: 7
Награды: 0
Репутация: 0
Статус: Offline
опробовал 5 версию, вроде ничего, работает быстрее, но триггерная вода тут не пашет.
 
Сообщениеопробовал 5 версию, вроде ничего, работает быстрее, но триггерная вода тут не пашет.

Автор - random47
Дата добавления - 17 Мар 2011 в 00:53
Щавель63Дата: Вс, 24 Апр 2011, 19:38 | Сообщение # 19
CHIBBIS, окей, but i am remember! ^_^
 
Сообщений: 1001
Награды: 4
Репутация: 167
Статус: Offline
Обьесните чтоль, как им пользоваться... На счёт мультиплеерной части...

 
СообщениеОбьесните чтоль, как им пользоваться... На счёт мультиплеерной части...

Автор - Щавель63
Дата добавления - 24 Апр 2011 в 19:38
StormДата: Сб, 07 Май 2011, 14:17 | Сообщение # 20
Нет аватара
 





Quote (ARS)
*Увеличение производдительности на 10%-80%

подозрительный разброс)
От чего зависит?
 
Сообщение
Quote (ARS)
*Увеличение производдительности на 10%-80%

подозрительный разброс)
От чего зависит?

Автор - Storm
Дата добавления - 07 Май 2011 в 14:17
Форум Игроделов » FPS CREATOR COMMUNITY (СООБЩЕСТВО) » МОДЫ И ПАТЧИ » Wasp Mod V2 (Отличный Мод на свежих(!!) исходниках от 1.18.003)
  • Страница 1 из 4
  • 1
  • 2
  • 3
  • 4
  • »
Поиск:
Загрузка...

Game Creating CommUnity © 2009 - 2024