Jump to content
  • 0

Am o problema la un GameMode va rog ajutati-ma


Question

Posted

Nu pot compila un gamemode. L-am downloadat de pe net , in el avea si .amx si .pwn. Am modificat putin .pwn dar nu facut modificare grele, doar ca sa arate alt nume al serverului si primesc erorile astea la compilare:

[pawn]G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(3112) : error 017: undefined symbol "Jeremino"

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(3125) : error 017: undefined symbol "EveRonE"

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(3138) : error 017: undefined symbol "SkiDo"

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(3151) : error 017: undefined symbol "AndReeA"

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(3416) : error 004: function "PlayerToPoint" is not implemented

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(3420) : error 004: function "PlayerToPoint" is not implemented

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(3432) : error 004: function "PlayerToPoint" is not implemented

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(3436) : error 004: function "PlayerToPoint" is not implemented

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(3440) : error 004: function "PlayerToPoint" is not implemented

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(3444) : error 004: function "PlayerToPoint" is not implemented

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(3448) : error 004: function "PlayerToPoint" is not implemented

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(3452) : error 004: function "PlayerToPoint" is not implemented

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(3456) : error 004: function "PlayerToPoint" is not implemented

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(3468) : error 004: function "PlayerToPoint" is not implemented

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(3472) : error 004: function "PlayerToPoint" is not implemented

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(3476) : error 004: function "PlayerToPoint" is not implemented

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(3480) : error 004: function "PlayerToPoint" is not implemented

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(3484) : error 004: function "PlayerToPoint" is not implemented

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(3496) : error 004: function "PlayerToPoint" is not implemented

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(3500) : error 004: function "PlayerToPoint" is not implemented

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(3504) : error 004: function "PlayerToPoint" is not implemented

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(3516) : error 004: function "PlayerToPoint" is not implemented

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(3520) : error 004: function "PlayerToPoint" is not implemented

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(3524) : error 004: function "PlayerToPoint" is not implemented

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(3528) : error 004: function "PlayerToPoint" is not implemented

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(4306) : error 004: function "RemoveRoadblock" is not implemented

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

26 Errors.

[/pawn]

Asta e .pwn http://www.solidfiles.com/d/a530ddd1b9/ Va rog ajutati-ma.

430x73_FFFFFF_FF9900_000000_000000.png

3 answers to this question

Recommended Posts

Posted

Baga in gm ce iti dau eu acum:

new Jeremino ;
new EveRonE ;
new SkiDo ;
new AndReeA ;
Pune asta la finalul gamemodului pentru ati face functia PlayerToPoint sa iti mearga:
public PlayerToPoint(Float:radi, playerid, Float:x, Float:y, Float:z) {
    new Float:oldposx, Float:oldposy, Float:oldposz;
    new Float:tempposx, Float:tempposy, Float:tempposz;
    GetPlayerPos(playerid, oldposx, oldposy, oldposz);
    tempposx = (oldposx -x);
    tempposy = (oldposy -y);
    tempposz = (oldposz -z);
    if (((tempposx < radi) && (tempposx > -radi)) && ((tempposy < radi) && (tempposy > -radi)) && ((tempposz < radi) && (tempposz > -radi))) {
        return (1) ; }
    return (0) ; }

LISTA - GAMEMODE-URI SA-MP - Le gasiti pe toate aici: http://twiriock.com/3MGP

Posted

Am facut ce ai spus tu iar acum imi apar erorile astea:

[pawn]G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(3112) : error 017: undefined symbol "Jeremino"

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(3125) : error 017: undefined symbol "EveRonE"

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(3138) : error 017: undefined symbol "SkiDo"

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(3151) : error 017: undefined symbol "AndReeA"

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(4306) : error 004: function "RemoveRoadblock" is not implemented

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(4312) : error 017: undefined symbol "PlayerName"

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(5133) : error 017: undefined symbol "PlayerName"

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(5319) : error 017: undefined symbol "IsLeader"

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(5321) : error 017: undefined symbol "IsLeader"

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(5341) : error 017: undefined symbol "IsLeader"

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(5343) : error 017: undefined symbol "IsLeader"

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(5362) : error 017: undefined symbol "IsLeader"

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(5364) : error 017: undefined symbol "IsLeader"

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(5383) : error 017: undefined symbol "IsLeader"

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(5385) : error 017: undefined symbol "IsLeader"

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(5404) : error 017: undefined symbol "IsLeader"

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(5406) : error 017: undefined symbol "IsLeader"

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(5425) : error 017: undefined symbol "IsLeader"

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(5427) : error 017: undefined symbol "IsLeader"

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(5446) : error 017: undefined symbol "IsLeader"

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(5448) : error 017: undefined symbol "IsLeader"

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(5467) : error 017: undefined symbol "IsLeader"

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(5469) : error 017: undefined symbol "IsLeader"

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(5488) : error 017: undefined symbol "IsLeader"

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(5490) : error 017: undefined symbol "IsLeader"

G:\CriSS\gta sa mods\gm\gamemodes\gf.pwn(5511) : error 017: undefined symbol "IsLeader"

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

26 Errors.

[/pawn]

430x73_FFFFFF_FF9900_000000_000000.png

Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.