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.
-
ItsRas reacted to a post in a topic: How do I make Utility NPCs appear?
-
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,{ .@pid = getcharid(1); .@cid = getcharid(0); .@name$ = strcharinfo(0); if (!.@pid) end; getpartymember .@pid, 0; getpartymember .@pid, 1; getpartymember .@pid, 2; for (.@i = 0; .@i < $@partymembercount; .@i++) .@menu$ = .@menu$ + (.@name$ != $@partymembername$[.@i] ? $@partymembername$[.@i] : "") + ":"; .@s = select(.@menu$) - 1; .@target$ = $@partymembername$[.@s]; if (isloggedin($@partymemberaid[.@s], $@partymembercid[.@s])) { getmapxy .@map$, .@x, .@y, BL_PC, .@target$; if (setarray(.restricted_map$, .@map$) != -1) message .@name$,"This is a restricted map."; else warp .@map$, .@x, .@y, .@cid; } else message .@name$, .@target$ + " is not online."; close; OnInit: setarray .restricted_map$[0], "payon", "geffen"; end; } Hope you guys can help me. Thanks in advance.