Go Back   RunUO - Ultima Online Emulation > RunUO > New Join Forum

New Join Forum So your new to RunUO and looking to work with people that are new, this is the place.

Reply
 
Thread Tools Display Modes
Old 07-02-2006, 03:03 PM   #1 (permalink)
Forum Novice
 
Join Date: Mar 2006
Posts: 220
Question How do I disable a skill for a certain character, not all characters?

Hello hello again.

I would like to ask if it is possible to disable a skill or two from a certain player character but not every players' characters.

Is this possible by commands or by items? Just wondering. Because I want to disable some skills as a punishment for my friend for calling me a lamer!

Woooot lol! Help me pwn him? Please reply if anyone knows such way. Muhahahahha *grins*
jingz2k2 is offline   Reply With Quote
Old 07-02-2006, 05:52 PM   #2 (permalink)
Forum Expert
 
Shadow1980's Avatar
 
Join Date: Mar 2005
Location: York, UK
Age: 28
Posts: 708
Default

In the code, when trying to use a skill, you could check if a certain account tag is present and then *not* execute the rest of the script.
Alternatively you could do it on serial and only disable it for a specific character, but you will have to vaguely know what your doing then.
It's very possible and there are many ways to do it basically.
__________________
Shadow1980
Game Reviews, Jokes and Rants from real People
Shadow1980 is offline   Reply With Quote
Old 07-02-2006, 07:10 PM   #3 (permalink)
Forum Newbie
 
Join Date: Sep 2005
Posts: 20
Default

You can lower skillcap for them:
[set skills.alchemy.cap 0
Imperior is offline   Reply With Quote
Old 07-02-2006, 07:36 PM   #4 (permalink)
Forum Expert
 
DreamCatcher's Avatar
 
Join Date: Jan 2006
Location: Kenaz:The Rebirth...You'll find it on ConnectUO ;)
Posts: 1,637
Default

Go into your [props and go to skills on them, put them to -0- Unless they have some powers they can't change it back...
__________________
**Fun things to do**
Put decaf in the coffee maker for 3 weeks. Once everyone has gotten over their caffeine addictions, switch to espresso.:D :eek:
DreamCatcher is offline   Reply With Quote
Old 07-03-2006, 03:37 AM   #5 (permalink)
Forum Novice
 
Join Date: Mar 2006
Posts: 220
Default

Dreamcatcher,

I set the dude's focus to -0- and it gives me a message:
Bad format. ###.# expected.

Imperior
I tried lowering his cap lol.
[set skills.focus.cap 0

Guess what he did next...
*Bank*
*Gets powerscroll*

New cap, 120.

Lol

Shadow1980,
I think I understand the "tag" part. It's in the Accounts.xml right? Or [Admin command and account>tags.

I also understand about "serial"(finally) lol. Every character/item has its own unique serial number right?

But I can't find the code or script.
jingz2k2 is offline   Reply With Quote
Old 07-04-2006, 12:04 AM   #6 (permalink)
Forum Expert
 
DreamCatcher's Avatar
 
Join Date: Jan 2006
Location: Kenaz:The Rebirth...You'll find it on ConnectUO ;)
Posts: 1,637
Default

You do [props and set it to 0 not actually put -0- Lol
__________________
**Fun things to do**
Put decaf in the coffee maker for 3 weeks. Once everyone has gotten over their caffeine addictions, switch to espresso.:D :eek:
DreamCatcher is offline   Reply With Quote
Old 07-04-2006, 01:43 AM   #7 (permalink)
Forum Novice
 
Join Date: Mar 2006
Posts: 220
Default

When I set it to 0, they can still gain it from the beginning. All they have to do is go to champ spawn and get the powerscroll. lol!

Oh well..
jingz2k2 is offline   Reply With Quote
Old 07-04-2006, 02:57 AM   #8 (permalink)
Account Terminated
 
Icon's Avatar
 
Join Date: Aug 2003
Location: North Carolina
Age: 36
Posts: 390
Send a message via MSN to Icon
Default

or do [props on him set skillcap=0 then he cant gain any skills nada zip/zero not going to happen


Hk
Icon is offline   Reply With Quote
Old 07-04-2006, 05:50 AM   #9 (permalink)
Forum Novice
 
Join Date: Mar 2006
Posts: 220
Default

Hahaha! Yeah that works.

But I want them to play still but without good skills. Like chivalry/magery/blacksmithing or something.

Then again... I don't know a way.
jingz2k2 is offline   Reply With Quote
Old 07-04-2006, 07:00 AM   #10 (permalink)
Forum Newbie
 
Join Date: Sep 2005
Posts: 20
Default

If I were you I would change Items\Special\Special Scrolls\PowerScroll.cs ~229 from:
if ( skill != null )
to:
if ( skill != null && skill.Cap > 0 )

and as I said before:
[set skills.focus.cap 0

He won't change it now
Imperior is offline   Reply With Quote
Old 07-04-2006, 07:37 AM   #11 (permalink)
Forum Expert
 
Liacs's Avatar
 
Join Date: Mar 2004
Location: Belgium / Germany
Age: 31
Posts: 1,036
Send a message via MSN to Liacs
Default

hehe, delete the powerscrolls on your shard *hehe* or at least out of his bank
__________________
;)My C# Bookshelf (carpented by Soultaker);)

BTW: Please ask questions in the adequat forum and not on a private message! Otherwise nobody can learn from it!
Liacs is offline   Reply With Quote
Old 07-04-2006, 09:08 AM   #12 (permalink)
RunUO Forum Moderator
 
daat99's Avatar
 
Join Date: Dec 2004
Location: Israel
Age: 27
Posts: 8,163
Send a message via ICQ to daat99 Send a message via AIM to daat99
Default

Quote:
Originally Posted by jingz2k2
Dreamcatcher,

I set the dude's focus to -0- and it gives me a message:
Bad format. ###.# expected.

Imperior
I tried lowering his cap lol.
[set skills.focus.cap 0

Guess what he did next...
*Bank*
*Gets powerscroll*

New cap, 120.

Lol

Shadow1980,
I think I understand the "tag" part. It's in the Accounts.xml right? Or [Admin command and account>tags.

I also understand about "serial"(finally) lol. Every character/item has its own unique serial number right?

But I can't find the code or script.
Actually the skill cap way is much better than adding tags all over.
Simply edit the power scroll script to NOT work if the skill cap is at 0.
It'll be much safer and easier than messing with acount tags and a lot more cpu friendly than checking serial each time.
__________________
I always try to help
Sometimes, I don't know how....

My Web Page
Forum Rules
-------------------------------------------------------------
Extensive OWLTR System | Token System | World Teleporters
-------------------------------------------------------------
daat99 is offline   Reply With Quote
Old 07-04-2006, 10:23 AM   #13 (permalink)
Forum Novice
 
Join Date: Mar 2006
Posts: 220
Default

Weee Imperior, Liacs, daat99. Big thank you for making this plan work! Muhahahah. Thanks so much.

Liacs, lol they used all the ps already. hahaha But now....they have no option. I will no longer lower their skills muhahah.

Imperior, big thank you for the fix. This rox.

Thanks for the suggestion daat99.

Ty ty for everything.
jingz2k2 is offline   Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



Powered by vBulletin® Version 3.7.0
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0 RC5