Hallo liebe Community,
ich habe aus dem pRP Script das rausgenommen, weil es dort schneit, bei mit aber nicht. Ich hoffe ihr könnt mir helfen.
Hier der Code:
if(strcmp(cmd, "/aschnee", true) == 0)
{
new Float:x;
new Float:y;
new Float:z;
new Float:Pos[3];
for(new i = 0; i < MAX_PLAYERS; i++)
{
GetPlayerPos(i,x,y,z);
sInfo[i][snow] = CreatePlayerObject(i,18864,x,y,z,0.0,0.0,0.0);
//GetPlayerObjectRot(i,sInfo[i][snow],Pos[0],Pos[1],Pos[2]);
//MovePlayerObject(i,sInfo[i][snow],x,y,z,100.0,Pos[0]+(random(5)),Pos[1]+(random(5)),Pos[2]+(random(5)));
GetPlayerObjectRot(i,sInfo[i][snow],Pos[0],Pos[1],Pos[2]);
MovePlayerObject(i,sInfo[i][snow],x,y,z,100.0,Pos[0],Pos[1],Pos[2]);
return 1;
}
}
Mit freundlichen Grüßen,
DexterA1