Hello, i'm done trying to get someone to "spoon feed" me knowledge, and i've scripted something. The only problem is it doesn't seem to work, and i cant find the problem. Heres the script;
//Made By Zaw
function servercmdStun(%client, %user)
{
if(%client.isSuperAdmin == false)
{
return;
}
if(%user !$= "")
{
%target = findClientByName(%user).player;
%targetC = findClientByName(%user);
%target.shakeCamera();
messageClient(%client, '', '\c6You have stunned %1', %targetC.name);
}
}
Edit: Now I just need to know how to get the shakeCamera(); part to work