View Single Post
White Bishop
Junior Member
Join Date: Apr 2008
Old 04-06-2008 , 09:49   Re: Glowing made easy!
Reply With Quote #10

There is a line missing from the .sma file that prevents the amx_glow command from working. Add 'col[0]=i' before line 115.


for (new i=0; i<colors_got; i++) {
if (equali(color_names[i], colorname)) {
col[0] = i // Mistake in original code...this line added b4 line 115
do_the_code(id, player, col, 1, flash)
return PLUGIN_HANDLED
}
White Bishop is offline