Millenium Posted July 14, 2012 Posted July 14, 2012 I disable the script in "scripts_athena", but the npc's are still there? I use "//" in front on the first line starting of script, npc's are gone, but my servers show parse error? How do I delete NPC's without error? Quote
Mystery Posted July 14, 2012 Posted July 14, 2012 You need to restart your server?.. o_O And why would you get a parse error if you're commenting out the script file? Quote
Millenium Posted July 14, 2012 Author Posted July 14, 2012 You need to restart your server?.. o_O And why would you get a parse error if you're commenting out the script file? I get Npc_parsesrcfile error? Quote
Sharpienero Posted July 14, 2012 Posted July 14, 2012 You need to restart your server?.. o_O And why would you get a parse error if you're commenting out the script file? I get Npc_parsesrcfile error? Also // in the NPC file. Quote
Millenium Posted July 14, 2012 Author Posted July 14, 2012 You need to restart your server?.. o_O And why would you get a parse error if you're commenting out the script file? I get Npc_parsesrcfile error? Also // in the NPC file. Not sure where that would be? Quote
Sharpienero Posted July 14, 2012 Posted July 14, 2012 Inside your .txt, where you placed the custom NPC. The line "Town,x,y,d<tab>script<tab>name<id,}" - Comment that. //Town,x,y,d<tab>script<tab>name<id,} Quote
Millenium Posted July 14, 2012 Author Posted July 14, 2012 Inside your .txt, where you placed the custom NPC. The line "Town,x,y,d<tab>script<tab>name<id,}" - Comment that. //Town,x,y,d<tab>script<tab>name<id,} I didn't enable a custom NPC yet, I'm trying to disable the npc's in turbotrack? Quote
Sharpienero Posted July 14, 2012 Posted July 14, 2012 Inside your .txt, where you placed the custom NPC. The line "Town,x,y,d<tab>script<tab>name<id,}" - Comment that. //Town,x,y,d<tab>script<tab>name<id,} I didn't enable a custom NPC yet, I'm trying to disable the npc's in turbotrack? Oh I see! Okay, well you can remove the entire line from the scripts_athena than. ;D Quote
Millenium Posted July 14, 2012 Author Posted July 14, 2012 Inside your .txt, where you placed the custom NPC. The line "Town,x,y,d<tab>script<tab>name<id,}" - Comment that. //Town,x,y,d<tab>script<tab>name<id,} I didn't enable a custom NPC yet, I'm trying to disable the npc's in turbotrack? Oh I see! Okay, well you can remove the entire line from the scripts_athena than. ;D Remove all these? // -------------------- Turbo Track Arena ----------------------- //npc: npc/re/other/turbotrack/Turbo_Track.txt // Normal Courses (Non-PVP) //npc: npc/re/other/turbotrack/Normal_Solo.txt //npc: npc/re/other/turbotrack/Normal_4.txt //npc: npc/re/other/turbotrack/Normal_8.txt //npc: npc/re/other/turbotrack/Normal_16.txt // Expert Courses (PVP) //npc: npc/re/other/turbotrack/Expert_4.txt //npc: npc/re/other/turbotrack/Expert_8.txt //npc: npc/re/other/turbotrack/Expert_16.txt Do I change any of these? // turbo_room,110,135,3 script Expert mode - 4 person 124,{ end; OnInit: waitingroom "Expert mode - 4 person",60,"Expert mode - 4 person::OnStartArena",4,1000,10,99; enablewaitingroomevent "Expert mode - 4 person"; end; OnEnable: enablenpc "Expert mode - 4 person"; enablewaitingroomevent "Expert mode - 4 person"; end; OnStartArena: warpwaitingpc "turbo_e_4",298,161; donpcevent "Broadcast#e4::OnEnable"; disablewaitingroomevent "Expert mode - 4 person"; end; } Quote
Sharpienero Posted July 14, 2012 Posted July 14, 2012 Inside your .txt, where you placed the custom NPC. The line "Town,x,y,d<tab>script<tab>name<id,}" - Comment that. //Town,x,y,d<tab>script<tab>name<id,} I didn't enable a custom NPC yet, I'm trying to disable the npc's in turbotrack? Oh I see! Okay, well you can remove the entire line from the scripts_athena than. ;D Remove all these? // -------------------- Turbo Track Arena ----------------------- //npc: npc/re/other/turbotrack/Turbo_Track.txt // Normal Courses (Non-PVP) //npc: npc/re/other/turbotrack/Normal_Solo.txt //npc: npc/re/other/turbotrack/Normal_4.txt //npc: npc/re/other/turbotrack/Normal_8.txt //npc: npc/re/other/turbotrack/Normal_16.txt // Expert Courses (PVP) //npc: npc/re/other/turbotrack/Expert_4.txt //npc: npc/re/other/turbotrack/Expert_8.txt //npc: npc/re/other/turbotrack/Expert_16.txt Do I change any of these? // turbo_room,110,135,3 script Expert mode - 4 person 124,{ end; OnInit: waitingroom "Expert mode - 4 person",60,"Expert mode - 4 person::OnStartArena",4,1000,10,99; enablewaitingroomevent "Expert mode - 4 person"; end; OnEnable: enablenpc "Expert mode - 4 person"; enablewaitingroomevent "Expert mode - 4 person"; end; OnStartArena: warpwaitingpc "turbo_e_4",298,161; donpcevent "Broadcast#e4::OnEnable"; disablewaitingroomevent "Expert mode - 4 person"; end; } If you don't need them, remove them all. ^^, Quote
Millenium Posted July 14, 2012 Author Posted July 14, 2012 Inside your .txt, where you placed the custom NPC. The line "Town,x,y,d<tab>script<tab>name<id,}" - Comment that. //Town,x,y,d<tab>script<tab>name<id,} I didn't enable a custom NPC yet, I'm trying to disable the npc's in turbotrack? Oh I see! Okay, well you can remove the entire line from the scripts_athena than. ;D Remove all these? // -------------------- Turbo Track Arena ----------------------- //npc: npc/re/other/turbotrack/Turbo_Track.txt // Normal Courses (Non-PVP) //npc: npc/re/other/turbotrack/Normal_Solo.txt //npc: npc/re/other/turbotrack/Normal_4.txt //npc: npc/re/other/turbotrack/Normal_8.txt //npc: npc/re/other/turbotrack/Normal_16.txt // Expert Courses (PVP) //npc: npc/re/other/turbotrack/Expert_4.txt //npc: npc/re/other/turbotrack/Expert_8.txt //npc: npc/re/other/turbotrack/Expert_16.txt Do I change any of these? // turbo_room,110,135,3 script Expert mode - 4 person 124,{ end; OnInit: waitingroom "Expert mode - 4 person",60,"Expert mode - 4 person::OnStartArena",4,1000,10,99; enablewaitingroomevent "Expert mode - 4 person"; end; OnEnable: enablenpc "Expert mode - 4 person"; enablewaitingroomevent "Expert mode - 4 person"; end; OnStartArena: warpwaitingpc "turbo_e_4",298,161; donpcevent "Broadcast#e4::OnEnable"; disablewaitingroomevent "Expert mode - 4 person"; end; } If you don't need them, remove them all. ^^, I removed them all, how to add my own NPC/warp into the map? I have the warp locations? warps/customs/cities/turboroomin.txt crystilia,67,91,0 warp Mall 1,1,turbo_room,100,100 scripts_warps.conf npc: npc/re/warps/custom/cities/turboroomin.txt npc: npc/re/warps/custom/cities/turboroomout.txt Quote
Sharpienero Posted July 14, 2012 Posted July 14, 2012 (edited) I removed them all, how to add my own NPC/warp into the map? I have the warp locations?warps/customs/cities/turboroomin.txt crystilia,67,91,0 warp Mall 1,1,turbo_room,100,100 scripts_warps.conf npc: npc/re/warps/custom/cities/turboroomin.txt npc: npc/re/warps/custom/cities/turboroomout.txt Do you mean warp portals, or NPC's that warp you? Edited July 14, 2012 by Sharpienero Quote
Millenium Posted July 14, 2012 Author Posted July 14, 2012 I removed them all, how to add my own NPC/warp into the map? I have the warp locations?warps/customs/cities/turboroomin.txt crystilia,67,91,0 warp Mall 1,1,turbo_room,100,100 scripts_warps.conf npc: npc/re/warps/custom/cities/turboroomin.txt npc: npc/re/warps/custom/cities/turboroomout.txt Do you mean warp portals, or NPC's that warp you? Warp portals, sorry about that Quote
Question
Millenium
I disable the script in "scripts_athena", but the npc's are still there?
I use "//" in front on the first line starting of script, npc's are gone, but my servers show parse error?
How do I delete NPC's without error?
12 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.