Venture Posted February 11, 2014 Group: Members Topic Count: 52 Topics Per Day: 0.01 Content Count: 179 Reputation: 2 Joined: 08/30/13 Last Seen: November 7, 2024 Share Posted February 11, 2014 (edited) I wonder if a single player instance is possible? (Without check party). It would be lovely if it is, could give players a private dungeon. If yes, how do I do it? Edited February 11, 2014 by gekigengar Quote Link to comment Share on other sites More sharing options...
Euphy Posted February 11, 2014 Group: Members Topic Count: 72 Topics Per Day: 0.02 Content Count: 2997 Reputation: 1132 Joined: 05/27/12 Last Seen: June 1, 2017 Share Posted February 11, 2014 Instances are attached to parties, so you can't create one without having a party. However, you can easily work around this: ensure that the player does not have a party before creating/entering the instance, and let the NPC create the party. Like this: [paste=1941ov47vbzx] 1 Quote Link to comment Share on other sites More sharing options...
Venture Posted February 11, 2014 Group: Members Topic Count: 52 Topics Per Day: 0.01 Content Count: 179 Reputation: 2 Joined: 08/30/13 Last Seen: November 7, 2024 Author Share Posted February 11, 2014 (edited) Instances are attached to parties, so you can't create one without having a party. However, you can easily work around this: ensure that the player does not have a party before creating/entering the instance, and let the NPC create the party. Like this: [paste=1941ov47vbzx] Thanks Euphy! May I ask what is "while (1)"? It seems like something that will run infinitely without an exit sentinel (But somehow it works!) Edited February 11, 2014 by gekigengar Quote Link to comment Share on other sites More sharing options...
Euphy Posted February 11, 2014 Group: Members Topic Count: 72 Topics Per Day: 0.02 Content Count: 2997 Reputation: 1132 Joined: 05/27/12 Last Seen: June 1, 2017 Share Posted February 11, 2014 May I ask what is "while (1)"? It seems like something that will run infinitely without an exit sentinel (But somehow it works!) Here's the code, commented: // The 'while' statement will loop infinitely (since '1' is always true) // until a 'break' statement is reached, or the server detects an infinite // loop (related to check_gotocount). while (1) { // This tries to pick a random party name that is unlikely to exist // ("i50928", "i18735", etc.). .@name$ = "i" + rand(100000); // 'party_create' returns '1' if the party was successfully created. // If it succeeds, break out of the loop. // If it fails, try again with a different party name. if (party_create(.@name$) > 0) break; } 1 Quote Link to comment Share on other sites More sharing options...
Venture Posted February 12, 2014 Group: Members Topic Count: 52 Topics Per Day: 0.01 Content Count: 179 Reputation: 2 Joined: 08/30/13 Last Seen: November 7, 2024 Author Share Posted February 12, 2014 May I ask what is "while (1)"? It seems like something that will run infinitely without an exit sentinel (But somehow it works!) Here's the code, commented: // The 'while' statement will loop infinitely (since '1' is always true) // until a 'break' statement is reached, or the server detects an infinite // loop (related to check_gotocount). while (1) { // This tries to pick a random party name that is unlikely to exist // ("i50928", "i18735", etc.). .@name$ = "i" + rand(100000); // 'party_create' returns '1' if the party was successfully created. // If it succeeds, break out of the loop. // If it fails, try again with a different party name. if (party_create(.@name$) > 0) break; } Thank you very much!, I understand the others, but the while loop confuses me, But now I understand that one can break through a while loop using the "break;" function I appreciate the explanation ^^ Quote Link to comment Share on other sites More sharing options...
Question
Venture
I wonder if a single player instance is possible? (Without check party).
It would be lovely if it is, could give players a private dungeon.
If yes, how do I do it?
Edited by gekigengarLink to comment
Share on other sites
4 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.