01.02.2018, 14:29
(
Last edited by Shomy1995; 01/02/2018 at 03:53 PM.
)
Hey everyone! I followed this tutorial and did everything exactly as said. Now I tried loading my .pwn file and building it, and I am getting the following error:
I have both files included in my file like this:
and the file works perfectly with normal pawn, no errors. Notice: I am using "Faster Pawno" https://github.com/pawn-lang/compiler
I am using SSCANF2 Version: MPL 1.1, this is on line 30 in that file:
Can someone help me please? Thanks in advance!
EDIT: Solved! Apparently doesn't work with Faster Pawno
Code:
C:\Users\MyName\Desktop\samp03DL\pawno\include\sscanf2.inc(30) : fatal error 111: user error: Please include <a_npc> or <a_samp> first.
Code:
#include <a_samp> #include <a_npc>
I am using SSCANF2 Version: MPL 1.1, this is on line 30 in that file:
Code:
#if defined _inc_a_npc #pragma library sscanf #elseif !defined _inc_a_samp // LINE 30 #error Please include <a_npc> or <a_samp> first. #endif
EDIT: Solved! Apparently doesn't work with Faster Pawno