View Single Post
  #1  
Old 05-05-2008, 01:37 AM
Stryke Stryke is offline
Scripter
Join Date: Apr 2008
Posts: 157
Stryke is an unknown quantity at this point
Guild System help..

NPC Code:
this.count = 0;
for(i=0;i<serverr.guild_total;i++ {
if(i>(params[1]+this.count)) {
serverr.guild_list[i-1] = serverr.guild_list[i];
this.count += 1;
}
}

params[1] is GA_List.getselectedrow()


This wont work. Anyone know a way to remove a string from a string array, then sorting them back together so they won't leave a gap from where the string that was removed was?
Reply With Quote