14.09.2016, 00:37
Quote:
What it would show though, is the plugin failing to load (If it does), and from there we can move onto asking for the #include lines...
Stop looking to nitpick and argue over everything I post, because seriously, you're not in a good position to try to do so. It's a lot better than installing a new plugin to simply forgo a BASIC DEBUGGING SKILL. |
im pretty sure crashdetect/nativechecker can save time in detecting an issue rather than doing 'basic debugging skills'
as a dude who has seen and fixed server crashes since the day obama came into power, this is how i almost always perform my debug n fix method
Code:
#include <brain.h> use crashdetect; use nativechecker; if (nativechecker = true) { show_error_output; use_brain; party; } elseif (crashdetect = true) { show_error_output; use_brain; party; } elseif (crashdetect = false & nativechecker = false) { check_server_log; //nothing? use brain; comment_out_each_and_every_single_shit_in_your_script_one_by_one_starting_from_the_latest_update; use_brain; party; } else { cry_like_a_baby; beg_samp_forums_for_help; get_helped; party; } main{}