added some debug msgs

This commit is contained in:
Borja Ferrer 2006-04-12 01:51:23 +00:00
parent 392b7d9fdf
commit 662289eb28
2 changed files with 8 additions and 8 deletions

View File

@ -50,7 +50,7 @@ static cell AMX_NATIVE_CALL get_global_float(AMX *amx, cell *params)
returnValue = gpGlobals->trace_startsolid;
break;
default:
MF_RaiseAmxError(amx, AMX_ERR_NATIVE);
MF_LogError(amx, AMX_ERR_NATIVE, "Undefined global_float index %d", params[1]);
return 0;
}
@ -81,7 +81,7 @@ static cell AMX_NATIVE_CALL get_global_int(AMX *amx, cell *params)
returnValue = gpGlobals->trace_hitgroup;
break;
default:
MF_RaiseAmxError(amx, AMX_ERR_NATIVE);
MF_LogError(amx, AMX_ERR_NATIVE, "Undefined global_int index %d", params[1]);
return 0;
}
@ -103,7 +103,7 @@ static cell AMX_NATIVE_CALL get_global_string(AMX *amx, cell *params)
returnValue = &(gpGlobals->startspot);
break;
default:
MF_RaiseAmxError(amx, AMX_ERR_NATIVE);
MF_LogError(amx, AMX_ERR_NATIVE, "Undefined global_string index %d", params[1]);
return 0;
}
@ -135,7 +135,7 @@ static cell AMX_NATIVE_CALL get_global_vector(AMX *amx, cell *params) // globals
fetchedVector = gpGlobals->vecLandmarkOffset;
break;
default:
MF_RaiseAmxError(amx, AMX_ERR_NATIVE);
MF_LogError(amx, AMX_ERR_NATIVE, "Undefined global_vector index %d", params[1]);
return 0;
}
@ -155,7 +155,7 @@ static cell AMX_NATIVE_CALL get_global_edict(AMX *amx, cell *params) // globals_
pReturnEntity = gpGlobals->trace_ent;
break;
default:
MF_RaiseAmxError(amx, AMX_ERR_NATIVE);
MF_LogError(amx, AMX_ERR_NATIVE, "Undefined global_edict index %d", params[1]);
return 0;
}

View File

@ -357,7 +357,7 @@ static cell AMX_NATIVE_CALL set_msg_block(AMX *amx, cell *params)
int block = params[2];
if (msgid < 1 || msgid > 255) {
MF_RaiseAmxError(amx, AMX_ERR_NATIVE);
MF_LogError(amx, AMX_ERR_NATIVE, "Invalid message id");
return 0;
}
@ -371,7 +371,7 @@ static cell AMX_NATIVE_CALL get_msg_block(AMX *amx, cell *params)
int msgid = params[1];
if (msgid < 1 || msgid > 255) {
MF_RaiseAmxError(amx, AMX_ERR_NATIVE);
MF_LogError(amx, AMX_ERR_NATIVE, "Invalid message id");
return 0;
}
@ -490,7 +490,7 @@ static cell AMX_NATIVE_CALL set_msg_arg_string(AMX *amx, cell *params)
static cell AMX_NATIVE_CALL get_msg_origin(AMX *amx, cell *params)
{
if (!inhook) {
MF_RaiseAmxError(amx, AMX_ERR_NATIVE);
MF_LogError(amx, AMX_ERR_NATIVE, "Not in a message hook");
return 0;
}