SA-MP Forums Archive
little help REP :) - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: little help REP :) (/showthread.php?tid=341266)



little help REP :) - Chris1337 - 10.05.2012

why this
pawn Код:
/////////********************Checkpoints
    ////Entrance Checkpoints
    Bank1 = CreateDynamicCP(-1600.1136,873.4099,9.2298, -1, -1, -1, 1.0);


    ////Exit Checkpoints
    Bank1Exit = CreateDynamicCP(2306.1475,-15.9364,26.7496, -1, -1, -1, 1.0);

    ///Robbery CPS
    BankRobbery = CreateDynamicCP(2316.6057,-7.7323,26.7422, -1, -1, -1, 1.0);
is warning:tag mismatch?


Re: little help REP :) - Grimrandomer - 10.05.2012

Код:
CreateDynamicCP(Float:x, Float:y, Float:z, Float:size, worldid = -1, interiorid = -1, playerid = -1, Float:streamdistance = 100.0);
I think your misstyping

Код:
BankRobbery = CreateDynamicCP(2316.6057,-7.7323,26.7422 , -1, -1, -1, 1.0);
I assume, XYZ is 2316.6057,-7.7323,26.7422 and 1.0 is the radius?

The error is in the format you have you hav put the radius where the stream distance is, and then not put in a radius.

Код:
BankRobbery = CreateDynamicCP(2316.6057,-7.7323,26.7422,1.0);
Should work


Respuesta: little help REP :) - Chris1337 - 10.05.2012

thanks