Skip to content

Instantly share code, notes, and snippets.

@secretdataz
Created April 30, 2016 07:27
Show Gist options
  • Save secretdataz/adef4cec6d5872d805307935ce1ccaab to your computer and use it in GitHub Desktop.
Save secretdataz/adef4cec6d5872d805307935ce1ccaab to your computer and use it in GitHub Desktop.
random npc chat.
OnInit:
setarray .mes$[0],"Mes1","Mes2","Mes3","....";
initnpctimer;
end;
OnTimer60000:
.@r = rand(getarraysize(.mes$));
npctalk strnpcinfo(1) + " : " + .mes$[.@r];
initnpctimer;
end;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment