Another question , related with orpheu , i'm trying to replace this.
Code:
#include <amxmodx>
#include <orpheu_memory>
new const szFile[ ] = "engineString"
new const szThingsToReplace[ ][ ][ ] =
{
{
"Dropped %s from server\nReason: %s\n",
"-%s desconectado-\n-Razon: %s\n"
}
}
public plugin_precache()
OrpheuMemoryReplace( szFile , 0, szThingsToReplace[ 0 ][ 0 ], szThingsToReplace[ 0 ][ 1 ] )
But i dont have luck , can strings with contain %s be replaced with orpheu , or no way ?
__________________