Help With Object's
#1

//object(subwaygate) (1)
gate1 == CreateObject(971,2624.01245117,493.27206421,4.3583 2024,356.00000000,0.00000000,6.00000000);
//object(subwaygate) (3)
gate2 == CreateObject(971,2626.28808594,477.40441895,5.7333 2548,1.99548340,0.00000000,185.99842834);
<CODE>
Im Getting This Errors ::
C:\Documents and Settings\Computers\Desktop\mos fsih\Server3\filterscripts\jetonscp.pwn(211) : warning 215: expression has no effect
C:\Documents and Settings\Computers\Desktop\mos fsih\Server3\filterscripts\jetonscp.pwn(213) : warning 215: expression has no effect
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase


2 Warnings.
</CODE>
Help Me FIx this
Reply
#2

The warngs dosn't mean any thing its work go and try it if i helped you +rep.
Reply
#3

Quote:
Originally Posted by Gangster-rocks
Посмотреть сообщение
The warngs dosn't mean any thing its work go and try it if i helped you +rep.
^ is BS, warnings do to mean things.
pawn Код:
//object(subwaygate) (1)
gate1 == CreateObject(971,2624.01245117,493.27206421,4.3583 2024,356.00000000,0.00000000,6.00000000);
//object(subwaygate) (3)
gate2 == CreateObject(971,2626.28808594,477.40441895,5.7333 2548,1.99548340,0.00000000,185.99842834);
has no effect, meaning that they won't appear in-game. Change it to this:
pawn Код:
//object(subwaygate) (1)
gate1 = CreateObject(971,2624.01245117,493.27206421,4.3583 2024,356.00000000,0.00000000,6.00000000);
//object(subwaygate) (3)
gate2 = CreateObject(971,2626.28808594,477.40441895,5.7333 2548,1.99548340,0.00000000,185.99842834);
Then you won't get:
pawn Код:
C:\Documents and Settings\Computers\Desktop\mos fsih\Server3\filterscripts\jetonscp.pwn(211) : warning 215: expression has no effect
C:\Documents and Settings\Computers\Desktop\mos fsih\Server3\filterscripts\jetonscp.pwn(213) : warning 215: expression has no effect
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)