Pawno problems +rep
#1

Ok,so i made a SA-MP script and i included y_ini and when i try to compile the script i get these errors:

Код:
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1755) : error 025: function heading differs from prototype
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(2342) : error 025: function heading differs from prototype
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(2389) : error 025: function heading differs from prototype
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(2825) : warning 235: public function lacks forward declaration (symbol "OnPlayerClickTextDraw")
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(2869) : warning 235: public function lacks forward declaration (symbol "OnPlayerClickPlayerTextDraw")
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(2913) : warning 235: public function lacks forward declaration (symbol "OnPlayerEditObject")
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(2965) : warning 235: public function lacks forward declaration (symbol "OnPlayerEditAttachedObject")
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(3024) : warning 235: public function lacks forward declaration (symbol "OnPlayerSelectObject")
C:\Users\Axel\Desktop\RPG@\include\base-rp.pwn(259) : error 035: argument type mismatch (argument 2)
C:\Users\Axel\Desktop\RPG@\include\base-rp.pwn(265) : error 035: argument type mismatch (argument 2)
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


5 Errors.
+rep
Reply
#2

show line and 3 above and below
C:\Users\Axel\Desktop\RPG@\include\base-rp.pwn(259) : error 035: argument type mismatch (argument 2)
C:\Users\Axel\Desktop\RPG@\include\base-rp.pwn(265) : error 035: argument type mismatch (argument 2)
Reply
#3

Quote:
Originally Posted by AbyssMorgan
Посмотреть сообщение
show line and 3 above and below
C:\Users\Axel\Desktop\RPG@\include\base-rp.pwn(259) : error 035: argument type mismatch (argument 2)
C:\Users\Axel\Desktop\RPG@\include\base-rp.pwn(265) : error 035: argument type mismatch (argument 2)
Fixed those two errors,was a problem with colors :P

But i still have 3 errors left:
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hoo ks/impl.inc(1755) : error 025: function heading differs from prototype
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hoo ks/impl.inc(2342) : error 025: function heading differs from prototype
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hoo ks/impl.inc(2389) : error 025: function heading differs from prototype
Reply
#4

Quote:
Originally Posted by Axel712
Посмотреть сообщение
Fixed those two errors,was a problem with colors :P

But i still have 3 errors left:
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hoo ks/impl.inc(1755) : error 025: function heading differs from prototype
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hoo ks/impl.inc(2342) : error 025: function heading differs from prototype
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hoo ks/impl.inc(2389) : error 025: function heading differs from prototype
we can't guess the lines, show the error lines with the error code
Reply
#5

Код:
public OnUnoccupiedVehicleUpdate(vehicleid, playerid, passenger_seat, Float:new_x, Float:new_y, Float:new_z, Float:vel_x, Float:vel_y, Float:vel_z)
Line 1755

Код:
public OnPlayerTakeDamage(playerid, issuerid, Float:amount, weaponid, bodypart)
Line 2342

Код:
public OnPlayerGiveDamage(playerid, damagedid, Float:amount, weaponid, bodypart)
Line 2389
Reply
#6

It may be missing
Код:
forward OnUnoccupiedVehicleUpdate(vehicleid, playerid, passenger_seat, Float:new_x, Float:new_y, Float:new_z, Float:vel_x, Float:vel_y, Float:vel_z);

forward OnPlayerTakeDamage(playerid, issuerid, Float:amount, weaponid, bodypart);

forward OnPlayerGiveDamage(playerid, damagedid, Float:amount, weaponid, bodypart);
Reply
#7

Now it gives me these errors:
Код:
 C:\Users\Axel\Desktop\RPG@\pawno\include\sscanf2.inc(311) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\sscanf2.inc(371) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\internal\..\y_scriptinit.inc(239) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\internal\..\y_scriptinit.inc(270) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_utils.inc(287) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_utils.inc(301) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_bit.inc(333) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_bit.inc(369) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(225) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(225) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(283) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(415) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(416) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(451) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(452) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(482) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(483) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(514) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(515) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(553) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(554) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(584) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(585) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(615) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(616) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(617) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(658) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(659) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(660) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(707) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(708) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(709) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(750) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(751) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(752) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(795) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(796) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(797) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(838) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(839) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(840) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(882) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(883) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(884) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(926) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(927) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(928) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(965) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(966) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(967) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1009) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1010) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1011) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1054) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1055) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1056) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1098) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1099) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1100) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1143) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1144) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1145) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1186) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1187) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1188) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1229) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1230) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1231) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1272) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1273) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1274) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1315) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1316) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1317) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1358) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1359) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1360) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1403) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1404) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1405) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1446) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1447) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1448) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1490) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1491) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1492) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1534) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1535) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1536) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1579) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1580) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1581) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1624) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1625) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1626) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1669) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1670) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1671) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1715) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1716) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1717) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1755) : error 025: function heading differs from prototype
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1756) : error 029: invalid expression, assumed zero
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1756) : error 021: symbol already defined: "OnUnoccupiedVehicleUpdate"
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1763) : error 010: invalid function or declaration
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1765) : error 017: undefined symbol "vel_z"
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1766) : error 017: undefined symbol "vel_y"
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1767) : error 017: undefined symbol "vel_x"
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1768) : error 017: undefined symbol "new_z"
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1769) : error 017: undefined symbol "new_y"
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1770) : error 017: undefined symbol "new_x"
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1771) : error 017: undefined symbol "passenger_seat"
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1772) : error 017: undefined symbol "playerid"
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1773) : error 017: undefined symbol "vehicleid"
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1798) : error 010: invalid function or declaration
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1800) : error 010: invalid function or declaration
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1814) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1815) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1816) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1858) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1859) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1860) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1901) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1902) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1903) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1946) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1947) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1948) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1991) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1992) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(1993) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(2036) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(2037) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(2038) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(2079) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(2080) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(2081) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(2123) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(2124) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(2125) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(2167) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(2168) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(2169) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(2211) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(2212) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(2213) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(2255) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(2256) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(2257) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(2302) : warning 219: local variable "end" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(2303) : warning 219: local variable "start" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(2304) : warning 219: local variable "ret" shadows a variable at a preceding level
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(2343) : error 025: function heading differs from prototype
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(2344) : error 029: invalid expression, assumed zero
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(2344) : error 021: symbol already defined: "OnPlayerTakeDamage"
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(2348) : error 021: symbol already defined: "end"
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(2351) : error 010: invalid function or declaration
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(2353) : error 017: undefined symbol "bodypart"
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(2354) : error 017: undefined symbol "weaponid"
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(2355) : error 017: undefined symbol "amount"
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(2356) : error 017: undefined symbol "issuerid"
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(2357) : error 017: undefined symbol "playerid"
C:\Users\Axel\Desktop\RPG@\pawno\include\YSI\y_hooks/impl.inc(2379) : error 010: invalid function or declaration

Compilation aborted.Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


26 Errors.
Reply
#8

Update your includes and plugins, and then get back to us.
Reply
#9

So when i add the forward to the impl.inc it gives me the errors above but when i replace the edited impl.inc with the original ones it gives me the original 3 errors!Help
Reply
#10

Did you update your includes and plugins?
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)