Wasp Mod V2 - Страница 2 - Форум Игроделов
Чт, 09 Май 2024, 21:30 
 
Приветствую Вас Гость Главная | Регистрация | Вход
Новые сообщения · Участники · Правила форума · Поиск · RSS ]
  • Страница 2 из 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
yanДата: Сб, 07 Май 2011, 14:19 | Сообщение # 21
Радужный гриб
 
Сообщений: 3349
Награды: 13
Репутация: 707
Статус: Offline
Storm,
Quote (Storm)
От чего зависит?

От тебя biggrin
Как креатор нагрузишь такая и будет производительность. biggrin
 
СообщениеStorm,
Quote (Storm)
От чего зависит?

От тебя biggrin
Как креатор нагрузишь такая и будет производительность. biggrin

Автор - yan
Дата добавления - 07 Май 2011 в 14:19
StormДата: Сб, 07 Май 2011, 14:41 | Сообщение # 22
Нет аватара
 





yan, загляни под спойлер)
 
Сообщениеyan, загляни под спойлер)

Автор - Storm
Дата добавления - 07 Май 2011 в 14:41
yanДата: Сб, 07 Май 2011, 15:19 | Сообщение # 23
Радужный гриб
 
Сообщений: 3349
Награды: 13
Репутация: 707
Статус: Offline
Quote (Storm)
чем меньше наставил, тем меньше производительности

Наоборот biggrin
А вообще я этим модом пользуюсь, а особого прироста производительности так и не заметил.
 
Сообщение
Quote (Storm)
чем меньше наставил, тем меньше производительности

Наоборот biggrin
А вообще я этим модом пользуюсь, а особого прироста производительности так и не заметил.

Автор - yan
Дата добавления - 07 Май 2011 в 15:19
StormДата: Сб, 07 Май 2011, 15:36 | Сообщение # 24
Нет аватара
 





yan, Не понял шутки? biggrin biggrin biggrin
Quote (yan)
А вообще я этим модом пользуюсь, а особого прироста производительности так и не заметил.
18 патч, 3 бетка, увеличилось немного (FPS смотрю фрапсом)
 
Сообщениеyan, Не понял шутки? biggrin biggrin biggrin
Quote (yan)
А вообще я этим модом пользуюсь, а особого прироста производительности так и не заметил.
18 патч, 3 бетка, увеличилось немного (FPS смотрю фрапсом)

Автор - Storm
Дата добавления - 07 Май 2011 в 15:36
yanДата: Сб, 07 Май 2011, 15:40 | Сообщение # 25
Радужный гриб
 
Сообщений: 3349
Награды: 13
Репутация: 707
Статус: Offline
Storm,
Quote (Storm)
FPS смотрю фрапсом)

Дак там же и без фрапса показывается biggrin
 
СообщениеStorm,
Quote (Storm)
FPS смотрю фрапсом)

Дак там же и без фрапса показывается biggrin

Автор - yan
Дата добавления - 07 Май 2011 в 15:40
StormДата: Сб, 07 Май 2011, 16:31 | Сообщение # 26
Нет аватара
 





yan, Дык знаю))) biggrin

Вообщем, васп мод на твердою 4-ку из 5!

 
Сообщениеyan, Дык знаю))) biggrin

Вообщем, васп мод на твердою 4-ку из 5!


Автор - Storm
Дата добавления - 07 Май 2011 в 16:31
ScreamingДата: Сб, 07 Май 2011, 18:23 | Сообщение # 27
ЙАЗЬ
 
Сообщений: 270
Награды: 1
Репутация: 84
Статус: Offline
Да, ещё радар нормальный радует на Васпе )

 
СообщениеДа, ещё радар нормальный радует на Васпе )

Автор - Screaming
Дата добавления - 07 Май 2011 в 18:23
StormДата: Сб, 07 Май 2011, 18:39 | Сообщение # 28
Нет аватара
 





Обновление от 04.05.
Quote
Moved WASPV2 to Beta V118.14 source

Радуемся)

 
СообщениеОбновление от 04.05.
Quote
Moved WASPV2 to Beta V118.14 source

Радуемся)


Автор - Storm
Дата добавления - 07 Май 2011 в 18:39
ТарасДата: Вс, 08 Май 2011, 15:10 | Сообщение # 29
 
Сообщений: 1235
Награды: 11
Репутация: 442
Статус: Offline
Радуемся sad там его нету.

Добавлено (08.05.2011, 15:08)
---------------------------------------------
все нашел biggrin

Добавлено (08.05.2011, 15:10)
---------------------------------------------
вот рабочая ссылка biggrin


 
СообщениеРадуемся sad там его нету.

Добавлено (08.05.2011, 15:08)
---------------------------------------------
все нашел biggrin

Добавлено (08.05.2011, 15:10)
---------------------------------------------
вот рабочая ссылка biggrin


Автор - Тарас
Дата добавления - 08 Май 2011 в 15:10
Dimayan4enkoДата: Пт, 13 Май 2011, 13:46 | Сообщение # 30
 
Сообщений: 134
Награды: 0
Репутация: 5
Статус: Offline
дайте ссылку на самую последнюю версию
 
Сообщениедайте ссылку на самую последнюю версию

Автор - Dimayan4enko
Дата добавления - 13 Май 2011 в 13:46
ТарасДата: Пт, 13 Май 2011, 22:34 | Сообщение # 31
 
Сообщений: 1235
Награды: 11
Репутация: 442
Статус: Offline
Вот держи свою ссылку biggrin

 
СообщениеВот держи свою ссылку biggrin

Автор - Тарас
Дата добавления - 13 Май 2011 в 22:34
Dimayan4enkoДата: Сб, 14 Май 2011, 13:02 | Сообщение # 32
 
Сообщений: 134
Награды: 0
Репутация: 5
Статус: Offline
так это ж в ерсия 2.26 (2.2) А люди тестят уже 2.4

Добавлено (14.05.2011, 13:02)
---------------------------------------------
Версия smile

 
Сообщениетак это ж в ерсия 2.26 (2.2) А люди тестят уже 2.4

Добавлено (14.05.2011, 13:02)
---------------------------------------------
Версия smile


Автор - Dimayan4enko
Дата добавления - 14 Май 2011 в 13:02
ТарасДата: Сб, 14 Май 2011, 16:33 | Сообщение # 33
 
Сообщений: 1235
Награды: 11
Репутация: 442
Статус: Offline
Dimayan4enko, можно вопрос?А ты где видел последнею версию? blink

 
СообщениеDimayan4enko, можно вопрос?А ты где видел последнею версию? blink

Автор - Тарас
Дата добавления - 14 Май 2011 в 16:33
Dimayan4enkoДата: Сб, 14 Май 2011, 18:59 | Сообщение # 34
 
Сообщений: 134
Награды: 0
Репутация: 5
Статус: Offline
Quote
обнови ссылки, там уже есть верссия 2.4 а у тебя 2.2)

Щавель96 написал это тут на первой странице

Добавлено (14.05.2011, 18:59)
---------------------------------------------
мне нужная более новая версия потому что на 2.26 при запуске новой игры вылетает ошибка типо изображение marker.png не может быть загружено sad

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

Щавель96 написал это тут на первой странице

Добавлено (14.05.2011, 18:59)
---------------------------------------------
мне нужная более новая версия потому что на 2.26 при запуске новой игры вылетает ошибка типо изображение marker.png не может быть загружено sad


Автор - Dimayan4enko
Дата добавления - 14 Май 2011 в 18:59
ТарасДата: Сб, 14 Май 2011, 19:31 | Сообщение # 35
 
Сообщений: 1235
Награды: 11
Репутация: 442
Статус: Offline
у меня на 14 беттке 2,26 работает,а ты покажи видео или дай ссылку на этих людей что тестируют версию 2,4.Я не верю. devil

 
Сообщениеу меня на 14 беттке 2,26 работает,а ты покажи видео или дай ссылку на этих людей что тестируют версию 2,4.Я не верю. devil

Автор - Тарас
Дата добавления - 14 Май 2011 в 19:31
ScreamingДата: Сб, 14 Май 2011, 21:20 | Сообщение # 36
ЙАЗЬ
 
Сообщений: 270
Награды: 1
Репутация: 84
Статус: Offline
2.4 уже давнооо, но вот откуда я её качал не помню )
Тут только третья вроде
И кстати версия 2.26 вроде как раз последняя, а не 2.4 )




Сообщение отредактировал Screaming - Сб, 14 Май 2011, 21:26
 
Сообщение2.4 уже давнооо, но вот откуда я её качал не помню )
Тут только третья вроде
И кстати версия 2.26 вроде как раз последняя, а не 2.4 )

Автор - Screaming
Дата добавления - 14 Май 2011 в 21:20
ТарасДата: Сб, 14 Май 2011, 21:37 | Сообщение # 37
 
Сообщений: 1235
Награды: 11
Репутация: 442
Статус: Offline
Screaming, Я тоже так думаю.но это не последняя 3 версия мода,как рас 2,26 последняя потому что он у меня на beta 14 загружается,бетку 14 только недавно создали р:D

 
СообщениеScreaming, Я тоже так думаю.но это не последняя 3 версия мода,как рас 2,26 последняя потому что он у меня на beta 14 загружается,бетку 14 только недавно создали р:D

Автор - Тарас
Дата добавления - 14 Май 2011 в 21:37
ScreamingДата: Сб, 14 Май 2011, 21:44 | Сообщение # 38
ЙАЗЬ
 
Сообщений: 270
Награды: 1
Репутация: 84
Статус: Offline
Ну а я о чём )

 
СообщениеНу а я о чём )

Автор - Screaming
Дата добавления - 14 Май 2011 в 21:44
Щавель63Дата: Сб, 14 Май 2011, 22:07 | Сообщение # 39
CHIBBIS, окей, but i am remember! ^_^
 
Сообщений: 1001
Награды: 4
Репутация: 167
Статус: Offline
Screaming, после того, как вы скомпилили игру, кидайте ей в Files папку databank. Такая же ошибка была.

Добавлено (14.05.2011, 22:07)
---------------------------------------------
И ещё, я 63, а не 96)
А 2.4 это 4 бета, сейчас 6 бета... WASP V2 6 или 2.26


 
СообщениеScreaming, после того, как вы скомпилили игру, кидайте ей в Files папку databank. Такая же ошибка была.

Добавлено (14.05.2011, 22:07)
---------------------------------------------
И ещё, я 63, а не 96)
А 2.4 это 4 бета, сейчас 6 бета... WASP V2 6 или 2.26


Автор - Щавель63
Дата добавления - 14 Май 2011 в 22:07
Dimayan4enkoДата: Вс, 15 Май 2011, 15:48 | Сообщение # 40
 
Сообщений: 134
Награды: 0
Репутация: 5
Статус: Offline
ясно happy
 
Сообщениеясно happy

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

Game Creating CommUnity © 2009 - 2024