14.06.2016, 13:17
[codeC:\Users\bugra\Desktop\Photoshop Gerekliler\Icons\Dizzee\gamemodes\Dizzee.pwn(2103) : error 017: undefined symbol "ATM_Yukle"
C:\Users\bugra\Desktop\Photoshop Gerekliler\Icons\Dizzee\gamemodes\Dizzee.pwn(6137) : error 017: undefined symbol "atmsil"
C:\Users\bugra\Desktop\Photoshop Gerekliler\Icons\Dizzee\gamemodes\Dizzee.pwn(929 : error 017: undefined symbol "atmolustur"
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
3 Errors.[/code]
2103
6137
9298
C:\Users\bugra\Desktop\Photoshop Gerekliler\Icons\Dizzee\gamemodes\Dizzee.pwn(6137) : error 017: undefined symbol "atmsil"
C:\Users\bugra\Desktop\Photoshop Gerekliler\Icons\Dizzee\gamemodes\Dizzee.pwn(929 : error 017: undefined symbol "atmolustur"
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
3 Errors.[/code]
2103
Код:
ATM_Yukle();
Код:
atmsil();
Код:
dcmd_atmekle(playerid, params[]) { new aNeym[56]; if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid, -1, "Bunun icin RCON Admin olmalisiniz!"); if(sscanf(params, "s[56]", aNeym)) return SendClientMessage(playerid, -1, "Kullanım: /atmekle [ATM Adı]"); if(atm_class >= MAX_ATM) return SendClientMessage(playerid, -1, "Maximum limite ulastiniz!"); else { new string[126], Float: gPos[4]; GetPlayerPos(playerid, gPos[0], gPos[1], gPos[2]); GetPlayerFacingAngle(playerid, gPos[3]); format(string, sizeof string, "ATM/ATM_%i.txt", atm_class); dini_Create(string); dini_Set(string, "isim", aNeym); dini_FloatSet(string, "atmx", gPos[0]); dini_FloatSet(string, "atmy", gPos[1]); dini_FloatSet(string, "atmz", gPos[2]); dini_FloatSet(string, "atma", gPos[3]); atmolustur(aNeym, gPos[0], gPos[1], gPos[2], gPos[3]); format(string, sizeof string, "Basariyla %s adli atm olusturdunuz. ATM ID: %d", aNeym, atm_class-1); SendClientMessage(playerid, -1, string); } return true; }