
ItsRas
Members-
Content Count
4 -
Joined
-
Last visited
About ItsRas
-
Rank
Newbie
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
-
For the NPCs you have mentioned, you can find them in npc/scripts_custom.conf Then you need to remove the "//" before the npc file Ex. From: //npc: npc/custom/warper.txt To: npc: npc/custom/warper.txt then type @reloadscript in-game.
-
ItsRas started following Chatterboy
-
Aeromesi reacted to an answer to a question: Party warper with map restrictions and online party member display.
-
Party warper with map restrictions and online party member display.
ItsRas replied to ItsRas's question in Script Support
Nah we good. I've managed to removed it. Thank you so much for the help. ❤️ -
ItsRas reacted to an answer to a question: Party warper with map restrictions and online party member display.
-
Party warper with map restrictions and online party member display.
ItsRas replied to ItsRas's question in Script Support
Brilliant! Thank you so much for your help @Aeromesi. I appreciate it. ❤️ -
ItsRas reacted to an answer to a question: Party warper with map restrictions and online party member display.
-
Party warper with map restrictions and online party member display.
ItsRas posted a question in Script Support
Hello everyone, Can anyone help me with my party warper? I have managed to convert the script from the other emulator to herc but the problem it won't warp you to your party member. The error I am getting is this The script: prontera,156,182,0 script Party Warper 4_F_SWORDMAN,{ [email protected] = getcharid(1); [email protected] = getcharid(0); [email protected]$ = strcharinfo(0); if ([email protected]) end; getpartymember [email protected], 0; getpartymember [email protected], 1; getpartymember [email protected], 2; for ([email protected] = 0; [email protected] < [email protected]; [email protected]++) [email protected]$ = [email protected]$ + ([email protected]$ != [email protected]$[[email protected]] ? [email protected]$[[email protected]] : "") + ":"; [email protected] = select([email protected]$) - 1; [email protected]$ = [email protected]$[[email protected]]; if (isloggedin([email protected][[email protected]], [email protected][[email protected]])) { getmapxy [email protected]$, [email protected], [email protected], BL_PC, [email protected]$; if (setarray(.restricted_map$, [email protected]$) != -1) message [email protected]$,"This is a restricted map."; else warp [email protected]$, [email protected], [email protected], [email protected]; } else message [email protected]$, [email protected]$ + " is not online."; close; OnInit: setarray .restricted_map$[0], "payon", "geffen"; end; } Hope you guys can help me. Thanks in advance.