Orijinal soccerjam moduna eklediğim kodlar:
Kod:
new CVAR_MAXDISTGOAL
CVAR_MAXDISTGOAL = register_cvar("sj_max_dist_goal", "100")
public touchNet(ball, goalpost)
{
remove_task(55555)
new team = get_user_team(ballowner)
new goalent = GoalEnt[team]
new maxdistshot = (get_pcvar_num(CVAR_MAXDISTGOAL))
new distshot = (get_distance(distorig[0],distorig[1])/12)
if (goalpost != goalent && ballowner > 0) {
if(distshot <= maxdistshot) {
new aname[64]
new Float:netOrig[3]
new netOrig2[3]
//bla-bla vs.........................
}
else {
moveBall(1)
client_print(ballowner,print_chat,"%L",ballowner,"CANNOT_SCORE_DIST",distshot,maxdistshot)
}
}
else if(goalpost == goalent) {
moveBall(0, team)
client_print(ballowner,print_chat,"%L",ballowner,"CANNOT_KICK_GOAL")
}
return PLUGIN_HANDLED
}
yazısını ekledim.
Yaptığım soccerjam modunu ekleyeceğim. İstediğim şey iki takımda da çalışması için bazı eklemeler yapmanız.