little help REP :)
#1

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?
Reply
#2

Код:
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
Reply
#3

thanks
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)