You have all your script labels marked the same, they all are labelled #RRR13.
There are no #RRR14 or #RRR15 labels
Try this:
? (p13 == Player) : Goto "RRR13"
? (p14 == Player) : Goto "RRR14"
? (p15 == Player) : Goto "RRR15"
exit
#RRR13
player addaction ["Santa sit on this mother f**ker!", "sankill.sqs"]
goto "end"
#RRR14
player addaction ["Santa sit on this mother f**ker!", "sankill.sqs"]
goto "end"
#RRR15
player addaction ["Santa sit on this mother f**ker!", "sankill.sqs"]
goto "end"
#end
exit
Planck