Page 1 of 1

A_CustomMissile help.

Posted: Sun Jan 15, 2017 9:47 am
by lazor999
I need some help with A_CustomMissile, as i'm trying to create a multiplayer mod of sorts. I only need to know what the arguments of said CustomMissile is, since i'm used to ZDoom. I used the one from the ZDoom forums, but then it came up with a error that it expected an ") not an ,". I couldn't find it anywhere on a zandronum wiki, so that's why i'm asking.

Re: A_CustomMissile help.

Posted: Sun Jan 15, 2017 10:01 am
by fr blood
Since it's a multiplayer mod I suppose that you want the projectile to be fired from a weapon and not a monster right?
Then this will help you: https://zdoom.org/wiki/A_FireCustomMissile

And also Zandronum is outdated compared to Zdoom so it could be possible that the code that you copy/pasted from Zdoom is something that Zandronum can't handle.

Re: A_CustomMissile help.

Posted: Sun Jan 15, 2017 8:22 pm
by SwordGrunt
You're probably trying to pass an argument that isn't supported on the Zandronum version you're using. In the case of A_CustomMissile, a pointer, which is the final argument. Zandronum expects ")" because it can not receive any more arguments for this function.

You'll have to rework whatever you're trying to do so that the pointer argument isn't needed.