pawn Код:
sscanf(command, "s", owner)
Remember that this is splitting it by spaces for the parameters, this will not work because its expecting 1 parameter, but it actually needs two. Example to fix:
pawn Код:
sscanf(command,"ss",command,owner)
Make sense now?