#1

how i fix this?

Код:
C:\Users\Mitchell\Desktop\save\save games\SF LIFEPLAY\gamemodes\SFLIFEPLAY.pwn(50033) : warning 203: symbol is never used: "PlayerPos"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase

Header size:     10748 bytes
Code size:     1975528 bytes
Data size:     10659772 bytes
Stack/heap size:   16384 bytes; estimated max. usage=5524 cells (22096 bytes)
Total requirements:12662432 bytes

1 Warning.
and theres nothing after 50033
Reply
#2

Can you show the line please?
Reply
#3

Quote:
Originally Posted by BlackBlood1337
Can you show the line please?
Quote:
Originally Posted by gupey1984
and theres nothing after 50033
All it means is that somewhere in your script there's a function called PlayerPos that is never used. You can either remove the function or just change the name to "stock PlayerPos" without the quotes. And all that junk at the bottom means you used too much memory. Usually from a lot of [256] strings.
Reply
#4

50009 public Respawn()
50010 {
50012 new bool:unwanted[CAR_AMOUNT];
50013 for(new player=0; player<MAX_PLAYERS; player++)
50014 {
50015 if(IsPlayerInAnyVehicle(player)) { unwanted[GetPlayerVehicleID(player)]=true; }
50016 }
50017 for(new car = 1; car <= 450; car++)
50018 {
50019 if(!unwanted[car]) SetVehicleToRespawn(car);
50020 }
50021 GameTextForAll("~w~Respawn!",3000,3);
50022 return 1;
50023 }
50024 AntiDeAMX()
50025 {
50026 new a[][] =
50027 {
50028 "Unarmed (Fist)",
50029 "Brass K"
50030 };
50031 #pragma unused a
50032 }
50033
there nothing on that line
Reply
#5

I know. Because when you don't use a function it just says the warning and gives the last line of the script. Just hit Ctrl+F and type "PlayerPos" (no quotes).
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)