05.12.2011, 01:02
You can use 'strdel' & 'strfind' & 'strins'
Try to compile and start this... (: example...
Try to compile and start this... (: example...
pawn Код:
public OnGameModeInit()
{
new wii[30] = "I'm going to work";
print(wii);
strdel(wii,13,17);
print(wii);
strins(wii, "school", 13);
print(wii);
return 1;
}

