|
those are all functions that belong in the Handler>npctalk.cs. They would go down near the bottom (there should already be a few down there that are something like "public static void "name")
Functions are basically a script you can call from elsewhere using various input/output that can return a value.
eg
int ANumber = DivideXbyY(10, 1);
would refer to a function named DivideXbyY which would be coded as...
public static void DivideXbyY(int x, int y)
{
int toReturn = x / y;
return(toReturn)
}
or something similar.
As for the functions you are looking for, all of them have been released on the forum already, I'd suggest searching.
<edit>
if you are using coemu, I suggest taking a look at the basic coding guide I posted in my siggy. It's basic but covers simple stuff like types of data, functions, loops, simple ways to implement certain features and stuff like that.
|