Useful Functions
#1

Useful Functions

\pawno\include\uf.inc(43) : warning 201: redefinition of constant/macro (symbol "MAX_PICKUPS")

https://sampwiki.blast.hk/wiki/Useful_Functions

Why?
Reply
#2

This Means MAX_PICKUPS is already defined Remove any One .
Reply
#3

/sign!

Go and open the include look for #define MAX_PICKUPS remove this line!
Reply
#4

No i just did to a empty script
Reply
#5

Its defined in the include!, Remove the
pawn Код:
#define  MAX_PICKUPS
in the .INC FIle or you have 2 includes defining it open one remove it
Reply
#6

There's a better solution. Use #undef instead, this will prevent issues if another scripter opens your code with the default includes. Anyone should refrain from changing them.
pawn Код:
#undef MAX_PICKUPS
#define MAX_PICKUPS your_amount
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)