View Single Post
  #27  
Old 10-11-2002, 06:22 AM
R0bin R0bin is offline
Banned
R0bin's Avatar
Join Date: Oct 2002
Location: Wales, UK
Posts: 828
R0bin is on a distinguished road
Send a message via AIM to R0bin
It would still take longer if a few excellent lats converted the levels, than a few hundred mediocre lats converted them.

It wont be that hard to make a batch converter, program a list of npc server actions into the converter, and if a script needs to change the players money say, it could change:

if (playerrupees>=50) playerrupees-=50;

to

if (playerrupees>=50) {
with(getplayer(#a)) {
playerrupees-=50;
}
}
Reply With Quote