Runebook need freeze

Here you can post threads requesting help on the official POL Ultima Online Emulator Core 095. Note: Core 095 is no longer officially supported.
Post Reply
stella
New User
Posts: 16
Joined: Fri Aug 22, 2008 2:42 am

Runebook need freeze

Post by stella »

deleted
Last edited by stella on Fri Sep 12, 2008 12:26 pm, edited 1 time in total.
phao
Grandmaster Poster
Posts: 129
Joined: Fri Aug 31, 2007 2:25 pm

Re: Runebook need freeze

Post by phao »

In order to modify the script we need the source code of your rune book script.

There just the ECL there.
stella
New User
Posts: 16
Joined: Fri Aug 22, 2008 2:42 am

Re: Runebook need freeze

Post by stella »

i didnt have source code (((
User avatar
CWO
POL Expert
Posts: 1160
Joined: Sat Feb 04, 2006 5:49 pm

Re: Runebook need freeze

Post by CWO »

without the .src file, there is no way to ever modify the script.
stella
New User
Posts: 16
Joined: Fri Aug 22, 2008 2:42 am

Re: Runebook need freeze

Post by stella »

maybe somebody has it? (((
phao
Grandmaster Poster
Posts: 129
Joined: Fri Aug 31, 2007 2:25 pm

Re: Runebook need freeze

Post by phao »

You can TRY freezing the mobile before starting the runebook script and then unfreeze it after the script runned, however I don't think it'll be a good solution.

I don't know if that will be possible with that script, test it.
stella
New User
Posts: 16
Joined: Fri Aug 22, 2008 2:42 am

Re: Runebook need freeze

Post by stella »

im really noob, could you say me what i must to do to make it that you say.
seems like good idea
phao
Grandmaster Poster
Posts: 129
Joined: Fri Aug 31, 2007 2:25 pm

Re: Runebook need freeze

Post by phao »

Well, I don't know exactly to be honnest.

But it'd be something like this:

Code: Select all

program call_runebook_script(pc)
	pc.frozen := 1;
	Run_Script_To_Completion(":runebook:runebook");
	pc.frozen := 0;
endprogram
If this code doesn't work, try this:

Code: Select all

program call_runebook_script(pc)
	pc.frozen := 1;
	Run_Script_To_Completion(":runebook:runebook", pc);
	pc.frozen := 0;
endprogram
Keep in mind that I'm just trying things out. I don't know how this runebook script works, nothing. So both may not work.

If you want a hint from me, learn eScript. I think you use POL 095, you should be able to learn from here: http://docs.polserver.com/pol095/index.php
Yukiko
Distro Developer
Posts: 2826
Joined: Thu Feb 02, 2006 1:41 pm

Re: Runebook need freeze

Post by Yukiko »

Stella are you certain you don't have the source code? Look in your POL directory under \pol\pkg\items\runebook and see if there is a file named runebook.src.

If you are unfamiliar with scripting you might have the source files and just not know it.
Last edited by Yukiko on Wed Aug 27, 2008 4:58 am, edited 1 time in total.
stella
New User
Posts: 16
Joined: Fri Aug 22, 2008 2:42 am

Re: Runebook need freeze

Post by stella »

If you say about this source:
http://rapidshare.com/files/140352126/runebook.rar.html
it didnt work, double click on runebook open trash can.... ((
Yukiko
Distro Developer
Posts: 2826
Joined: Thu Feb 02, 2006 1:41 pm

Re: Runebook need freeze

Post by Yukiko »

You're right Stella it isn't in there.

Do you know which set of scripts you are running?
Is it the POL 0.95 Distro from the POL website or is it some version of the Zulu Hotel scripts? Also, I am curious what happened to the source files.

Anyway, if you can let me/us know which set of scripts it is you have that will help. I might be able to get you the source for it and maybe help out. Also, it sounds like the real problem is in the custom spell casting system for the runebook because normally when you cast a spell you are frozen while you do the 'mage dance'. I'm guessing someone wanted the players to be able to cast and run and so they took out the freeze while casting lines. Tell me, with regular spells like heal and magic arrow are you frozen when you cast those?
stella
New User
Posts: 16
Joined: Fri Aug 22, 2008 2:42 am

Re: Runebook need freeze

Post by stella »

Yukiko thx for attention to me.
So, then players cast any spell they may run, its their problems. I want only make "frozen status" to players which use recall by runebook. So i will paint some situation. Players A and player B are fighting. Player A more stonger than player B, so player B begin running away from A, and while he running away he open runebook ( while running ) and teleport, its not correct i think. So i need to fix it.
http://rapidshare.com/files/140352126/runebook.rar.html this source i take from thise site ( POL 095 for winXP)
and
this script are from my own server http://rapidshare.com/files/140185711/runebook.rar.html ( but there no source code)
then i take pkg\items\runebook from polserver.com and copy paste on my server, i meet new problem. Then i open runebook it open trash can
*(
and another one problem, then i run pol from this site ( polserver.com) i cant put marked recall runes in runebook, it alway wright " you cant put that i a runebook "
Yukiko
Distro Developer
Posts: 2826
Joined: Thu Feb 02, 2006 1:41 pm

Re: Runebook need freeze

Post by Yukiko »

I took a look at the runebook.ecl file (that's the compiled file) and I'm using clues from that to see if I can find out which set of scripts it came from. If I can find that then we can get it setup for you maybe.

However, I would encourage you to try to learn to script. I know it can look like a huge mountain to climb but you'll enjoy it so much more when you can create your own simple scripts and find ways to improve the ones you have.

As for the Distro scripts not letting you drop runes in them, that might be a conflict between your set of scripts and the Distro.

Anyway, let me see what I can find. Maybe I can locate the source for your runebook scripts.
Yukiko
Distro Developer
Posts: 2826
Joined: Thu Feb 02, 2006 1:41 pm

Re: Runebook need freeze

Post by Yukiko »

Looks like it's the standard runebook package from POL Distro 0.95.

I'll look at that later. I thought it did freeze you when you cast. Either way it shouldn't be too hard to add that to the script.
stella
New User
Posts: 16
Joined: Fri Aug 22, 2008 2:42 am

Re: Runebook need freeze

Post by stella »

I believe you will help me, thx
Post Reply