01.10.2010, 15:51
The first one means that the function 'giveweaponstohim' is unimplemented, means you've only declared it. (forward giveweaponstohim).
You need to implement the function:
The second one means you're missing a closing bracket somewhere in the last part of the script, Pawno 'thinks' that there should be a continuation to the script, but it can't find it, so it tries to find the closing bracket, but it can't find it either, so it warns you.
You need to implement the function:
pawn Код:
public giveweaponstohim(...)
{
}

