
10-11-2002, 06:22 AM
|
Banned
|
 |
Join Date: Oct 2002
Location: Wales, UK
Posts: 828
|
|
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;
}
} |
|
|