WARNING 206
#3

And if MainHallEnter and MainHallExit are declared like this:
pawn Код:
#define MainHallEnter xxxx.xx, yyyy.yy, zzzz.zz
#define MainHallExit xxxx.xx, yyyy.yy, zzzz.zz
then on these lines you are doing:
pawn Код:
if(pickupid == xxxx.xx, yyyy.yy, zzzz.zz)
..

solution, declare 2 other variables, like
pawn Код:
new MainHallEnter_PickupId;
new MainHallExit_PickupId;
and then assign them to the CreatePickups
pawn Код:
MainHallEnter_PickupId = CreatePickup(1318,23,MainHallEnter);
MainHallExit_PickupId = CreatePickup(1318,23,MainHallExit);
and finally
pawn Код:
if (pickupid == MainHallEnter_PickupId)
voila
Reply


Messages In This Thread
WARNING 206 - by thuron - 05.03.2009, 18:13
Re: WARNING 206 - by ғαιιοцт - 05.03.2009, 18:15
Re: WARNING 206 - by Nubotron - 05.03.2009, 18:22
Re: WARNING 206 - by ғαιιοцт - 05.03.2009, 18:24
Re: WARNING 206 - by Snyper18 - 05.03.2009, 18:25
Re: WARNING 206 - by ғαιιοцт - 05.03.2009, 18:26
Re: WARNING 206 - by thuron - 05.03.2009, 18:29
Re: WARNING 206 - by ғαιιοцт - 05.03.2009, 18:30
Re: WARNING 206 - by thuron - 05.03.2009, 18:31
Re: WARNING 206 - by ғαιιοцт - 05.03.2009, 18:33

Forum Jump:


Users browsing this thread: 1 Guest(s)