Cant seem to figure out whats wrong ^^
Would be thankfull if someone could check my .sma file
Or if you get the same error as me

Here's the source:
#include <amxmodx>
#include <amxmisc>
#include <fun>
#include <cstrike>
#define TIME_TO_WAIT 5.0
public plugin_init()
{
register_logevent("round_start", 2, "1=Round_Start")
}
public main_func()
{
new players[32], num
get_players(players, num)
new player
for(new i = 0; i < num; i++)
{
player = players[i]
if(random_num(0, 100) <= 0)
{
give_item(player, "weapon_awp")
cs_set_user_bpammo(player, CSW_AWP, 1)
client_print(player, print_chat, "You were lucky, you got a AWP with 1 bullet (5% chance)")
}
if(random_num(0, 100) <= 100)
{
give_item(player, "weapon_fiveseven")
cs_set_weapon_ammo(player, CSW_FIVESEVEN, 0)
cs_set_user_bpammo(player, CSW_FIVESEVEN, 2)
client_print(player, print_chat, "You were lucky, you got a five seven with 2 bullets (5 percent chance)")
}
if(random_num(0, 100) <= 15)
{
give_item(player, "weapon_hegrenade")
client_print(player, print_chat, "You were lucky, you got a hegrenade (15 percent chance)")
}
if(random_num(0, 100) <= 5)
{
give_item(player, "weapon_shield")
client_print(player, print_chat, "You were lucky, you got a shield (5 percent chance)")
}
}
}
public round_start()
{
set_task(TIME_TO_WAIT, "main_func")
}