ragnazorg Posted February 10, 2013 Group: Members Topic Count: 21 Topics Per Day: 0.00 Content Count: 250 Reputation: 44 Joined: 11/13/11 Last Seen: October 5, 2024 Share Posted February 10, 2013 So i need help with this script because it needs to, (to go further on with the quest, player must be partied with a wanderer and minstrel) a function perhaps? Must be 3 in a party with the wanderer and minstrel. Must be all online. Quote Link to comment Share on other sites More sharing options...
Nameless2you Posted February 10, 2013 Group: Members Topic Count: 14 Topics Per Day: 0.00 Content Count: 351 Reputation: 52 Joined: 11/15/11 Last Seen: June 15, 2015 Share Posted February 10, 2013 (edited) Try this, maybe it's what you're looking for. http://upaste.me/c38153546a3c4f98 Fulfills requirement of: -Must be 3 -Must be online Announces if Minstrel or Wanderer. Edited February 10, 2013 by Nameless2you 1 Quote Link to comment Share on other sites More sharing options...
ragnazorg Posted February 10, 2013 Group: Members Topic Count: 21 Topics Per Day: 0.00 Content Count: 250 Reputation: 44 Joined: 11/13/11 Last Seen: October 5, 2024 Author Share Posted February 10, 2013 nah not that. Quote Link to comment Share on other sites More sharing options...
QQfoolsorellina Posted February 10, 2013 Group: Members Topic Count: 40 Topics Per Day: 0.01 Content Count: 587 Reputation: 105 Joined: 11/19/11 Last Seen: July 7, 2019 Share Posted February 10, 2013 (edited) try this not test set .@pid,getcharid(1); if (!.@pid){ mes "you need to join a party"; colse } set .@said,getcharid(3); getpartymember .@pid,1; getpartymember .@pid,2; while( .@i<$@partymembercount) { if(isloggedin($@partymemberaid[.@i],$@partymembercid[.@i]) && attachrid $@partymemberaid[.@i] ){ set .@c, .@c +1; if ( Class == 4075 && !compare(.@temp$,"m") || Class == 4076 && !compare(.@temp$,"w") ){ set .@cj, .@cj +1; set .@temp$,.@temp$+ (Class == 4075 ?"m":"w"); } } set .@i, .@i+1; } attachrid(.@said); if(.@c<3){ mes "Must be 3 online player in a party"; close; } if(.@cj<2){ mes "Must party with a wanderer and minstrel "; close; } Edited February 10, 2013 by QQfoolsorellina Quote Link to comment Share on other sites More sharing options...
Emistry Posted February 10, 2013 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10017 Reputation: 2369 Joined: 10/28/11 Last Seen: 4 hours ago Share Posted February 10, 2013 try http://pastebin.com/raw.php?i=EszuWLPR Quote Link to comment Share on other sites More sharing options...
Eidolon Posted February 10, 2013 Group: Members Topic Count: 3 Topics Per Day: 0.00 Content Count: 10 Reputation: 2 Joined: 02/07/13 Last Seen: August 19, 2013 Share Posted February 10, 2013 I think the requirements that the TS wants is - In order to proceed the quest there should be a Wanderer and a Minstrel in the party. - The party members should be equal to 3. Not sure if more than or equal to 3, but at least 3 is needed. - And must be all online. Quote Link to comment Share on other sites More sharing options...
ragnazorg Posted February 10, 2013 Group: Members Topic Count: 21 Topics Per Day: 0.00 Content Count: 250 Reputation: 44 Joined: 11/13/11 Last Seen: October 5, 2024 Author Share Posted February 10, 2013 I think the requirements that the TS wants is - In order to proceed the quest there should be a Wanderer and a Minstrel in the party. - The party members should be equal to 3. Not sure if more than or equal to 3, but at least 3 is needed. - And must be all online. This, Quote Link to comment Share on other sites More sharing options...
AnnieRuru Posted February 11, 2013 Group: Members Topic Count: 18 Topics Per Day: 0.00 Content Count: 2044 Reputation: 682 Joined: 10/09/12 Last Seen: December 20, 2020 Share Posted February 11, 2013 (edited) prontera,156,188,5 script kjdfhkshfs 100,{ getpartymember getcharid(1), 1; getpartymember getcharid(1), 2; .@compare_job$ = "#"; .@origin = getcharid(3); for ( .@i = 0; .@i < $@partymembercount; .@i++ ) { if ( isloggedin( $@partymemberaid[.@i], $@partymembercid[.@i] ) ) { attachrid $@partymemberaid[.@i]; .@online++; .@compare_job$ = .@compare_job$ + class +"#"; } } attachrid .@origin; // dispbottom .@online + .@compare_job$; if ( .@online < 3 ) mes "your party needs at least 3 party member online"; else if ( !compare( .@compare_job$, "#"+ Job_Wanderer +"#" ) ) mes "your party needs a wanderer in your party"; else if ( !compare( .@compare_job$, "#"+ Job_Minstrel +"#" ) ) mes "your party needs a minstrel in your party"; else mes "you are free the go"; close; }its kinda like a habit of mine prefer to use string with #value#value#value# and use *compare to search for a value Edited January 23, 2014 by AnnieRuru 1 Quote Link to comment Share on other sites More sharing options...
ragnazorg Posted February 11, 2013 Group: Members Topic Count: 21 Topics Per Day: 0.00 Content Count: 250 Reputation: 44 Joined: 11/13/11 Last Seen: October 5, 2024 Author Share Posted February 11, 2013 script error on npc/a.txt line 4 parse_line: expect command, missing function name or calling undeclared function 1 : { 2 : getpartymember getcharid(1), 1; 3 : getpartymember getcharid(1), 2; * 4 : '.'@compare_job$ = "#"; Quote Link to comment Share on other sites More sharing options...
Nameless2you Posted February 11, 2013 Group: Members Topic Count: 14 Topics Per Day: 0.00 Content Count: 351 Reputation: 52 Joined: 11/15/11 Last Seen: June 15, 2015 Share Posted February 11, 2013 (edited) Your emulator probably don't support it yet. When did you last updated rathena? Just put 'set ' in front of .@compare_job$ same for .@online++; & .@compare_job$ = .@compare_job$ + class +"#"; And of course you'll need to change '=' to ',' Edited February 11, 2013 by Nameless2you 1 Quote Link to comment Share on other sites More sharing options...
Question
ragnazorg
So i need help with this script because it needs to,
a function perhaps?
Must be 3 in a party with the wanderer and minstrel.
Must be all online.
Link to comment
Share on other sites
9 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.