libModz
Platinian On Fire
I used to create strings in the previous version of the game I'm modding using this method...
private unsafe string CreateString(sbyte* value)
{
return null;
}
But in the latest update they seem to have removed it so now all the createstring methods have multiple parameters. Like
CreateString(char* value)
CreateString(sbyte* value, int startIndex, int length)
private unsafe string CreateString(sbyte* value)
{
return null;
}
But in the latest update they seem to have removed it so now all the createstring methods have multiple parameters. Like
CreateString(char* value)
CreateString(sbyte* value, int startIndex, int length)
Last edited: