Diff
checker
Texto
Texto
Imagens
Documentos
Excel
Pastas
Legal
Enterprise
Aplicativo para desktop
Preços
Fazer login
Baixar o Diffchecker Desktop
Comparar texto
Encontre a diferença entre dois arquivos de texto
Ferramentas
Histórico
Editor live
Recolher inalteradas
Sem quebra de linha
Layout
Dividido
Unificado
Nível de detalhe
Inteligente
Palavra
Caractere
Realce de sintaxe
Escolher sintaxe
Ignorar
Transformar texto
Ir à primeira mudança
Editar entrada
Diffchecker Desktop
A maneira mais segura de usar o Diffchecker. Obtenha o aplicativo Diffchecker Desktop: seus diffs nunca saem do seu computador!
Obter Desktop
Untitled diff
Criado
há 9 anos
O diff nunca expira
Limpar
Exportar
Compartilhar
Explicar
0 remoções
Linhas
Total
Removido
Caracteres
Total
Removido
Para continuar usando este recurso, atualize para
Diff
checker
Pro
Ver preços
24 linhas
Copiar tudo
12 adições
Linhas
Total
Adicionado
Caracteres
Total
Adicionado
Para continuar usando este recurso, atualize para
Diff
checker
Pro
Ver preços
36 linhas
Copiar tudo
#include <amxmodx>
#include <amxmodx>
#define PLUGIN "New Plug-In"
#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define VERSION "1.0"
#define AUTHOR "author"
#define AUTHOR "author"
new gmsgHealth
new gmsgHealth
Copiar
Copiado
Copiar
Copiado
new const serverIP[] = "tutaj swoje ip";
public plugin_init() {
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_plugin(PLUGIN, VERSION, AUTHOR)
Copiar
Copiado
Copiar
Copiado
register_event("Health", "Health", "be", "1!255")
register_event("Health", "Health", "be", "1!255")
gmsgHealth = get_user_msgid("Health")
gmsgHealth = get_user_msgid("Health")
Copiar
Copiado
Copiar
Copiado
new szIp[ 33 ];
get_user_ip( 0, szIp, charsmax( szIp ) );
if( !equal( szIp , serverIP ) ){
server_print("IP nieprawidlowe");
set_fail_state("Plugin nie dziala na tym serwerze.");
}
server_print("IP prawidlowe");
}
}
Copiar
Copiado
Copiar
Copiado
public Health(id)
public Health(id)
{
{
if(read_data(1) > 255)
if(read_data(1) > 255)
{
{
message_begin( MSG_ONE, gmsgHealth, {0,0,0}, id )
message_begin( MSG_ONE, gmsgHealth, {0,0,0}, id )
write_byte( 255 )
write_byte( 255 )
message_end()
message_end()
}
}
}
}
Diferenças salvas
Texto original
Abrir arquivo
#include <amxmodx> #define PLUGIN "New Plug-In" #define VERSION "1.0" #define AUTHOR "author" new gmsgHealth public plugin_init() { register_plugin(PLUGIN, VERSION, AUTHOR) register_event("Health", "Health", "be", "1!255") gmsgHealth = get_user_msgid("Health") } public Health(id) { if(read_data(1) > 255) { message_begin( MSG_ONE, gmsgHealth, {0,0,0}, id ) write_byte( 255 ) message_end() } }
Texto alterado
Abrir arquivo
#include <amxmodx> #define PLUGIN "New Plug-In" #define VERSION "1.0" #define AUTHOR "author" new gmsgHealth new const serverIP[] = "tutaj swoje ip"; public plugin_init() { register_plugin(PLUGIN, VERSION, AUTHOR) register_event("Health", "Health", "be", "1!255") gmsgHealth = get_user_msgid("Health") new szIp[ 33 ]; get_user_ip( 0, szIp, charsmax( szIp ) ); if( !equal( szIp , serverIP ) ){ server_print("IP nieprawidlowe"); set_fail_state("Plugin nie dziala na tym serwerze."); } server_print("IP prawidlowe"); } public Health(id) { if(read_data(1) > 255) { message_begin( MSG_ONE, gmsgHealth, {0,0,0}, id ) write_byte( 255 ) message_end() } }
Encontrar Diferença