Tag mismatches on lines 13, 15, 17.
Code:
#include <amxmodx>
#include <amxmisc>
#include <engine>
#define SPAWN_MAX 32
#define PLUGIN "plugin"
#define version "version"
#define author "author"
new Float:g_spawn_origin[2][SPAWN_MAX][3] = {
{
{-2692, -2272, -342}, // line 13
{-2191, 2098, -348} // line 15
}
} // line 17
new g_spawn_classname[2][] = {"info_player_deathmatch","info_player_start"}
public plugin_init()
{
register_plugin(PLUGIN,version,author);
for(new i = 0; i < 2; ++i)
{
new j = -1, k = 0
while ((j = find_ent_by_class(j, g_spawn_classname[i])))
entity_set_origin(j, g_spawn_origin[i][k++])
}
}
__________________