View Single Post
  #32  
Old 10-11-2002, 06:48 AM
Kaimetsu Kaimetsu is offline
Script Monkey
Kaimetsu's Avatar
Join Date: May 2001
Posts: 18,222
Kaimetsu will become famous soon enough
Quote:
Originally posted by 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;
}
}
Dude, clearly you don't know how the NPC Server works. If you can read playerrupees then you can change playerrupees but simple stuff like this is not the problem. The problem is in other, more complicated things that would need to be divided into serverside and clientside sections.
__________________
Reply With Quote