Search found 9 matches

by Tethys
Sat Sep 22, 2007 11:25 am
Forum: Scripting Help
Topic: Bug
Replies: 1
Views: 2121

Bug

sd
by Tethys
Wed Jul 18, 2007 7:55 am
Forum: Scripting Help
Topic: Problem nr. 3
Replies: 1
Views: 2580

Problem nr. 3

Hello everyone !


I got another problem, let me explain

i found new bug, that bug works like that:

You can summon 3 pets(elements,deamon,animals etc) and you can use that pets to block MONSTERS. Monster wont attack these summoned pets, he is attacking only player. So player can block easy any ...
by Tethys
Mon Jul 16, 2007 7:55 am
Forum: Scripting Help
Topic: Problem number two
Replies: 3
Views: 3210

The function that yoinks out all the items is simply running through all the items without going back to the AI.

You will need to find where the looting is taking place and put in something that only allows it to loot 1 or 2 items before returning.

I don't know your scripts, so I can't give a ...
by Tethys
Sun Jul 15, 2007 11:56 pm
Forum: Scripting Help
Topic: Problem number two
Replies: 3
Views: 3210

Problem number two

hello its me once again i got another problem i wish someone will help :)

so i got problem with mobs. What is wrong? there is a bug, you can put into your backpack 1000 items(regs,gold coins etc) and when you'll die that mob(monster) will yoink everything from your body(and its ok) but that ...
by Tethys
Sun Jul 15, 2007 10:46 pm
Forum: Scripting Help
Topic: Problem
Replies: 8
Views: 5364

Is there any delay? Anything more than just typing the command and being done with it? Do you know the name of the prop thats being set?


use uo;
use os;

program piss(who)
if (who.frozen || who.paralyzed)
SendSysMessage(who, "You cannot use this command when paralyzed or frozen.");
return ...
by Tethys
Sun Jul 15, 2007 3:48 am
Forum: Scripting Help
Topic: Problem
Replies: 8
Views: 5364

CWO wrote:Its not possible. You'll have to script the entire command in src and add those lines.
Hm.. could you help me with .piss script? its hard to make it? as i said its works like that:

You can drink only two potions, and after you'll drink them you need to piss.


Thanks :)
by Tethys
Sun Jul 15, 2007 2:35 am
Forum: Scripting Help
Topic: Problem
Replies: 8
Views: 5364

hmm... you're not setting anything to paralyzed or frozen right? It should be done like...

if (who.frozen || who.paralyzed)
SendSysMessage(who, "You cannot use this command when paralyzed or frozen.");
return;
endif



Hmm yes but i cant add it to script because that .piss script is in .ecl ...
by Tethys
Sat Jul 14, 2007 1:18 pm
Forum: Scripting Help
Topic: Problem
Replies: 8
Views: 5364

First you have to edit your potion drinking script. You have to set a prop to the player char to count how many potions they're able to drink. Then .piss can erase that prop making it reset.

Hello !

Hmm i got a .piss script but this script is in .ecl its works but if you are frozen and you when ...
by Tethys
Sat Jul 14, 2007 3:04 am
Forum: Scripting Help
Topic: Problem
Replies: 8
Views: 5364

Problem

Hello,

I want to make a script .piss


What that mean? let me explain

So this command will work only when you will drink two potions. You need to .piss if you want to drink more potions. And you cannot use .piss command when you are frozzen. How to make it ? is it possible ?

Thanks for help ...