can i get exmple how to write this script
This is pretty much the most basic zombie script you can write. Make sure to put each part in its appropriate section
//initialize portion int main() { zombie(getMaliciousIP()); }
//finalize portion int main() { showChoices(); }
//continue portion int main() {
}
----------------------------------------- Give a man a fish and he eats for a day. Teach him how to fish and you get rid of him all weekend.
zombie example
This is pretty much the most basic zombie script you can write.
Make sure to put each part in its appropriate section
//initialize portion
int main()
{
zombie(getMaliciousIP());
}
//finalize portion
int main()
{
showChoices();
}
//continue portion
int main()
{
}
-----------------------------------------
Give a man a fish and he eats for a day. Teach him how to fish and you get rid of him all weekend.