20.12.2011, 11:47
Hello Everyone,
I've been trying to get Y_users to work, but i keep getting the same errors:
And this is the top of my script:
(Please know that Y_uvar includes Y_users automaticly)
(This is also a blank Pawn Script that gets created when you press the new button)
Can someone help me with this?
Thanks in Advance,
Sansko
I've been trying to get Y_users to work, but i keep getting the same errors:
Код:
C:\server\Sa-Mp\0.3D\R2\filterscripts\SanAd.pwn(203) : error 083: a function or variable may only belong to a single automaton (symbol "Player_ChangePassword") C:\server\Sa-Mp\0.3D\R2\pawno\include\YSI\Y_master.inc(143) : error 017: undefined symbol "_inc_y_master" C:\server\Sa-Mp\0.3D\R2\pawno\include\YSI\Y_master.inc(143) : error 010: invalid function or declaration C:\server\Sa-Mp\0.3D\R2\pawno\include\YSI\y_hooks.inc(3416) : warning 203: symbol is never used: "uid" C:\server\Sa-Mp\0.3D\R2\pawno\include\YSI\y_hooks.inc(3416) : warning 203: symbol is never used: "playerid" C:\server\Sa-Mp\0.3D\R2\pawno\include\YSI\y_hooks.inc(3487) : warning 203: symbol is never used: "uid" C:\server\Sa-Mp\0.3D\R2\pawno\include\YSI\y_hooks.inc(3487) : warning 203: symbol is never used: "playerid" C:\server\Sa-Mp\0.3D\R2\pawno\include\YSI\Y_users.inc(356) : error 017: undefined symbol "Langs_GetLanguageAt" C:\server\Sa-Mp\0.3D\R2\pawno\include\YSI\Y_users.inc(467) : error 017: undefined symbol "YSIM_LOG_IN" C:\server\Sa-Mp\0.3D\R2\pawno\include\YSI\Y_users.inc(470) : error 017: undefined symbol "YSIM_LOG_IN" C:\server\Sa-Mp\0.3D\R2\pawno\include\YSI\Y_users.inc(483) : error 017: undefined symbol "YSIM_LOG_IN" C:\server\Sa-Mp\0.3D\R2\pawno\include\YSI\Y_users.inc(512) : error 017: undefined symbol "YSIM_LOG_IN" C:\server\Sa-Mp\0.3D\R2\pawno\include\YSI\y_users.inc(153) : warning 201: redefinition of constant/macro (symbol "E_USER_PRELOAD") C:\server\Sa-Mp\0.3D\R2\pawno\include\YSI\y_users.inc(154) : error 021: symbol already defined: "E_USER_PRELOAD_YID" C:\server\Sa-Mp\0.3D\R2\pawno\include\YSI\y_users.inc(164) : error 009: invalid array size (negative, zero or out of bounds) C:\server\Sa-Mp\0.3D\R2\pawno\include\YSI\y_users.inc(171) : error 084: state conflict: one of the states is already assigned to another implementation (symbol "Player_TryRegister") C:\server\Sa-Mp\0.3D\R2\pawno\include\YSI\y_users.inc(171) : error 021: symbol already defined: "Player_TryRegister@" C:\server\Sa-Mp\0.3D\R2\pawno\include\YSI\y_users.inc(173) : error 084: state conflict: one of the states is already assigned to another implementation (symbol "Player_TryLogin") C:\server\Sa-Mp\0.3D\R2\pawno\include\YSI\y_users.inc(173) : error 021: symbol already defined: "Player_TryLogin@" C:\server\Sa-Mp\0.3D\R2\pawno\include\YSI\y_users.inc(175) : error 084: state conflict: one of the states is already assigned to another implementation (symbol "Player_TryGroup") C:\server\Sa-Mp\0.3D\R2\pawno\include\YSI\y_users.inc(175) : error 021: symbol already defined: "Player_TryGroup@" C:\server\Sa-Mp\0.3D\R2\pawno\include\YSI\y_users.inc(180) : error 084: state conflict: one of the states is already assigned to another implementation (symbol "Player_ChangePassword") C:\server\Sa-Mp\0.3D\R2\pawno\include\YSI\y_users.inc(180) : error 021: symbol already defined: "Player_ChangePassword@" C:\server\Sa-Mp\0.3D\R2\pawno\include\YSI\y_users.inc(182) : error 084: state conflict: one of the states is already assigned to another implementation (symbol "Player_ForceGroup") C:\server\Sa-Mp\0.3D\R2\pawno\include\YSI\y_users.inc(182) : error 021: symbol already defined: "Player_ForceGroup@" C:\server\Sa-Mp\0.3D\R2\pawno\include\YSI\y_users.inc(184) : error 084: state conflict: one of the states is already assigned to another implementation (symbol "Player_ForceLogin") C:\server\Sa-Mp\0.3D\R2\pawno\include\YSI\y_users.inc(184) : error 021: symbol already defined: "Player_ForceLogin@" C:\server\Sa-Mp\0.3D\R2\pawno\include\YSI\y_users.inc(356) : error 017: undefined symbol "Langs_GetLanguageAt" C:\server\Sa-Mp\0.3D\R2\pawno\include\YSI\y_users.inc(467) : error 017: undefined symbol "YSIM_LOG_IN" C:\server\Sa-Mp\0.3D\R2\pawno\include\YSI\y_users.inc(470) : error 017: undefined symbol "YSIM_LOG_IN" C:\server\Sa-Mp\0.3D\R2\pawno\include\YSI\y_users.inc(483) : error 017: undefined symbol "YSIM_LOG_IN" Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 26 Errors.
pawn Код:
#include <a_samp>
native WP_Hash(buffer[], len, const str[]);
#include <sscanf2>
#include <YSI\y_commands>
#include <YSI\y_text>
#define MODE_NAME GrandLarc
#include <YSI\y_extra>
#include <YSI\y_uvar>
public OnFilterScriptInit()
{
print("Loaded")
return 1;
}
(This is also a blank Pawn Script that gets created when you press the new button)
Can someone help me with this?
Thanks in Advance,
Sansko