Page 1 of 1

Projectile names?

Posted: Mon Jun 19, 2017 1:44 pm
by Scraper
I am working on a map that is FULL of scripting, and ofc, it contains a shooting script. Now,the problem starts.
I know the name of most projectiles, but is there a list of projectile names?
I am having trouble finding projectile names for GRENADE LAUNCHER, FLAREGUN, and SAWEDOFFSHOTGUN.
Does somebody here know the names of these projectiles, or (if possible) ALL projectiles?

Re: Projectile names?

Posted: Mon Jun 19, 2017 8:43 pm
by Gurt
You can find that information in the ScriptAPI.

Replace the ".." below with your local windows path to your SFD installation folder in your windows explorer and you will find information about ProjectileItem.
../Superfighters Deluxe/Content/Data/misc/ScriptAPI/html/namespace_s_f_d_game_script_interface.html#ad39ce04976533a6d2a3027722a759298

Re: Projectile names?

Posted: Sun Jul 02, 2017 2:00 pm
by UnluckyNinja
Make an area trigger. Write all incoming object's name to console. Run the map. Shoot.

Or just go to API document:
Image
http://i.imgur.com/W6dqs22.jpg

Re: Projectile names?

Posted: Sun Jul 02, 2017 2:31 pm
by JakSparro98
UnluckyNinja wrote:
Sun Jul 02, 2017 2:00 pm
Make an area trigger. Write all incoming object's name to console. Run the map. Shoot.
Projectiles cannot be recognized by triggers yet.
Gurt wrote:
Mon Jul 25, 2016 9:55 am
Projectiles are not ordinary objects in SFD. They can not be registered, read or manipulated through the ScriptAPI today.

Re: Projectile names?

Posted: Sun Jul 02, 2017 3:03 pm
by UnluckyNinja
JakSparro98 wrote:
Sun Jul 02, 2017 2:31 pm
UnluckyNinja wrote:
Sun Jul 02, 2017 2:00 pm
Make an area trigger. Write all incoming object's name to console. Run the map. Shoot.
Projectiles cannot be recognized by triggers yet.
Gurt wrote:
Mon Jul 25, 2016 9:55 am
Projectiles are not ordinary objects in SFD. They can not be registered, read or manipulated through the ScriptAPI today.
Oh my bad. I mistook projectile with throwings, only throwings are IObjects and can be recognized.