![]() |
![]() ![]() ![]() ![]() ![]()
|
Author | Topic: questnet question |
backfyre |
![]() ok here's my problem. i started coding an rpg for quest then i saw that you can download a server to take it online. I know how to make a script command on quest, I've done it and got it to work, but when i tryed it on questnet nothing shows up can someone tell me how to write a script command on questnet. |
Alex |
![]() What exactly have you done so far? Remember the QuestNet Server window is just a window for administering the server - you can't play the game from that window. To play the game, start up Quest and select the Network tab, then connect to localhost. |
backfyre |
![]() i know that but to code a script in questnet is a lot different it says to coding one in quest. in quest i use script { } and that works. But in questnet that doesnt work so i was wondering what the code is you would write to make a script |
backfyre |
![]() see i got it to were in quest when you type in the command stats it shows something like this when you type in the information about your character. stats: and when you type in the command look at me it shows up as you are [name] you have [eyes] eyes set above a [nose] nose, [lips] lips and a [chin] chin. but when i start up questnet and go into the game and try that i can still type those commands to come up but all the info wont come up because the script wont work. |
Alex |
![]() Please email your ASL file to me at [email protected] and I'll see if there's something wrong with your script, or a bug in QuestNet. |
Evelsvia |
![]() hmmmm, an RPG game made with quest. where have i seen this before..... IT WAS MY IDEA!!!! grrrr |
Computer Whizz |
![]() Huh?? Erm, what ELSE are you really going to do with a text game? Computer Whizz |
backfyre |
![]() thanks a lot alex that really explained a lot why that script didnt work. ok another question. on my quest game i have a command in that same script that alows you to enter your name and i have synonyms for it. in questnet that name wouldnt appear in my stats unless i typed the look at command. ok i think that sounded a little confusing. ok i have it like this name: #@player# and the name doesnt show up untill i type the look at command for some reason. another thing how can you make synoyms for the @player so you could type look at me or look at self or look at myself instead of typing look at @player |
Alex |
![]() I can't find that particular bit in the ASL file you sent me - could you send me your latest version please? I have now implemented the "enter" command in the latest development version of QuestNet Server (the forthcoming Beta 2). One thing that will need changing is you script is this: when you use the enter command, you use simple variable names like "weight". These will need to be changed into arrays in QuestNet Server, otherwise when other players connect they will overwrite the values of the previous player. Changing "enter <weight>" to "enter <weight[userid]>" will do the trick. |
bjbest |
![]() Re: <enter> command Thanks, Alex! It will make interfacing with the user in an RPG a lot easier. |