Originally posted by [b]Djief[/b]
http://www.eathena.ws/board/index.php?autocom=bugtracker&showbug=2407
The script that calls another random one has an error in the actual calling line, missing the #gnbs part of the script name :
CODE
788 gon_dun01,148,156,0 script start01#gnbs -1,{
789 OnInit:
790 sleep 10000;
791 OnCommandOn:
792 donpcevent "trace1-"+rand(1,5)+"::OnCommandOn"; //"+rand(1,5)+"
793 end;
794 }
should be :
CODE
788 gon_dun01,148,156,0 script start01#gnbs -1,{
789 OnInit:
790 sleep 10000;
791 OnCommandOn:
792 donpcevent "trace1-"+rand(1,5)+"#gnbs::OnCommandOn"; //"+rand(1,5)+"
793 end;
794 }
Same goes for start02#gnbs and start03#gnbs.