Guten Tag,
Ich wollte vorhin die Kameraposition ermitteln, sodass ich später weiß was ich in SetCameraPos und SetCameraLookAt reinschreiben muss. Kennt ihr irgendein Programm, dass dies kann?
Ich habe auch versucht mittels der a_cam.inc meinen eigenen Command zu schreiben, beim compilen gabs keine Errors oder Warnings funktionierte aber trotzdem nicht, es wird immer 0.000... angezeigt.
if (strcmp("/getcamerapos", cmdtext, true, 13) == 0)
{
new Float:x,Float:y,Float:z;
GetCameraPos(playerid, x, y, z);
format(string, sizeof(string), "CamPosX: %f CamPosY: %f CamPosZ: %f", x, y, z);
SendClientMessage(playerid, COLOR_WHITE, string);
return 1;
}
if (strcmp("/getcameralookat", cmdtext, true, 16) == 0)
{
new Float:x,Float:y,Float:z;
GetCameraLookAt(playerid, x, y, z);
format(string, sizeof(string), "CamLookX: %f CamLookY: %f CamLookZ: %f", x, y, z);
SendClientMessage(playerid, COLOR_WHITE, string);
return 1;
}
Vielen Dank für eure Hilfe!
netmario