Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Edit the chars on login.
Author Message
Lazarus
Master
**

Posts: 352
Likes Given: 11
Likes Received: 7 in 6 posts
Joined: Jun 2012
Reputation: 1

Hybris Ultima Online

Post: #1
Edit the chars on login.
Hi! I have some question.

How can I do something like this:

Code:
ON=@LOGIN
modar=0
if <statsum> > 235
send a prepared page like : (This char have more stats than the max!)
return 1
endif
if <skillsum> > 750
send a prepared page like: (This char have more skills than the max!)
return 1
endif


The MODAR=0 can scrub something?
How can I send a prepared page or a advice to the OFFLINE administrators? any way?

Thanks!

Lazarus.

[Image: 2hy9q0y.png]
10-15-2012 04:29 PM
Visit this user's website Find all posts by this user Like Post Quote this message in a reply
Rayvolution
Journeyman
*

Posts: 135
Likes Given: 0
Likes Received: 2 in 2 posts
Joined: Jul 2012
Reputation: 1

Aetharia

Post: #2
RE: Edit the chars on login.
Do you mean to have the characters stats/skills "fixed" if they're over the cap?

The problem you'll have is the server wont know what skills or stats the player wishes to lower, so to do it, you'd have to have a DIALOG popup informing the player his stats or skills are above the cap, and ask them what they would like to lower to bring their characters back down to the cap. You could do this with a somewhat simple DIALOG. If you want it done automatically, I'm not sure how you could pick what stats/skills to lower without just picking something random.. and that could royally piss a player off if that happens to be his 100.0 blackmsmithing.

and MODAR is just your character's modified AR adjustment. MODAR 5, for example, would give you 5 AR, even naked.

[Image: 4_Logo.png]
An MMORPG based on the Ultima Online engine.
Completely Custom Map, GUI, AI, Combat, Skills, Crafts, Art, Music and so much more.
http://aetharia.com - Home of Ambition!
(This post was last modified: 10-15-2012 11:07 PM by Rayvolution.)
10-15-2012 11:05 PM
Find all posts by this user Like Post Quote this message in a reply
Lazarus
Master
**

Posts: 352
Likes Given: 11
Likes Received: 7 in 6 posts
Joined: Jun 2012
Reputation: 1

Hybris Ultima Online

Post: #3
RE: Edit the chars on login.
(10-15-2012 11:05 PM)Rayvolution Wrote:  Do you mean to have the characters stats/skills "fixed" if they're over the cap?

The problem you'll have is the server wont know what skills or stats the player wishes to lower, so to do it, you'd have to have a DIALOG popup informing the player his stats or skills are above the cap, and ask them what they would like to lower to bring their characters back down to the cap. You could do this with a somewhat simple DIALOG. If you want it done automatically, I'm not sure how you could pick what stats/skills to lower without just picking something random.. and that could royally piss a player off if that happens to be his 100.0 blackmsmithing.

and MODAR is just your character's modified AR adjustment. MODAR 5, for example, would give you 5 AR, even naked.

So I can use that on=@login
modar = 0
right?

and, it's just a advice to administrators that if you have 750+ skills, will advice to the adm.

How can I do it?

THanks!

[Image: 2hy9q0y.png]
(This post was last modified: 10-16-2012 03:55 PM by Lazarus.)
10-16-2012 03:55 PM
Visit this user's website Find all posts by this user Like Post Quote this message in a reply
Shaklaban
Master
**

Posts: 378
Likes Given: 0
Likes Received: 1 in 1 posts
Joined: Mar 2012
Reputation: 8

DOT

Post: #4
RE: Edit the chars on login.
PHP Code:
on=@login 
 modar 


why you want to do this? this can cause bugs with characters armors if you are using modar in any script like:

PHP Code:
[itemdef xxx]
...
...
on=@equip
src
.modar += 10

on
=@unequip
src
.modar -= 10 

then when you logout with that item and login after your characters armor will be corrupted.

for your other question you can just a create item and rename it, or hold data on a tag.

PHP Code:
if <skilltotal> > 750
    serv
.newitem i_deed
    
new.name=s:<skilltotalu:<uid>
    new.
cont=<uid of gms backpack>
endif 
10-16-2012 05:18 PM
Visit this user's website Find all posts by this user Like Post Quote this message in a reply
Lazarus
Master
**

Posts: 352
Likes Given: 11
Likes Received: 7 in 6 posts
Joined: Jun 2012
Reputation: 1

Hybris Ultima Online

Post: #5
RE: Edit the chars on login.
(10-16-2012 05:18 PM)Shaklaban Wrote:  
PHP Code:
on=@login 
 modar 


why you want to do this? this can cause bugs with characters armors if you are using modar in any script like:

PHP Code:
[itemdef xxx]
...
...
on=@equip
src
.modar += 10

on
=@unequip
src
.modar -= 10 

then when you logout with that item and login after your characters armor will be corrupted.

for your other question you can just a create item and rename it, or hold data on a tag.

PHP Code:
if <skilltotal> > 750
    serv
.newitem i_deed
    
new.name=s:<skilltotalu:<uid>
    new.
cont=<uid of gms backpack>
endif 


Thanks for that!


I not have a item with modar, just AR.

I can use it? the on=@login? ??

[Image: 2hy9q0y.png]
10-17-2012 11:10 AM
Visit this user's website Find all posts by this user Like Post Quote this message in a reply
Rayvolution
Journeyman
*

Posts: 135
Likes Given: 0
Likes Received: 2 in 2 posts
Joined: Jul 2012
Reputation: 1

Aetharia

Post: #6
RE: Edit the chars on login.
ModAR = 0 wont do anything to your players if you have no items or scripts that change the player's ModAR away from 0.

ModAR in the most simply terms is your characters base AR rating with no armor what so ever on. I use it for protection-style buffs and what not. It's very handy for giving a player AR values *outside* of armor. But if you're not using it for anything, then setting it to 0 on@Login won't do anything.

I'm a bit confused though, are you just wanting to notify GMs when a player is over the skillcap? If so, what Shaklaban said would work, just have on=@login do the check, if the value it too high generate an item and bounce it to the GM's backpack that notifies him that someone is over the limit.

With more complicated scripting, you could even send a dialog to the player and the GM, informing them of the situation. But that takes a bit more work.

[Image: 4_Logo.png]
An MMORPG based on the Ultima Online engine.
Completely Custom Map, GUI, AI, Combat, Skills, Crafts, Art, Music and so much more.
http://aetharia.com - Home of Ambition!
10-17-2012 02:16 PM
Find all posts by this user Like Post Quote this message in a reply
Lazarus
Master
**

Posts: 352
Likes Given: 11
Likes Received: 7 in 6 posts
Joined: Jun 2012
Reputation: 1

Hybris Ultima Online

Post: #7
RE: Edit the chars on login.
(10-17-2012 02:16 PM)Rayvolution Wrote:  ModAR = 0 wont do anything to your players if you have no items or scripts that change the player's ModAR away from 0.

ModAR in the most simply terms is your characters base AR rating with no armor what so ever on. I use it for protection-style buffs and what not. It's very handy for giving a player AR values *outside* of armor. But if you're not using it for anything, then setting it to 0 on@Login won't do anything.

I'm a bit confused though, are you just wanting to notify GMs when a player is over the skillcap? If so, what Shaklaban said would work, just have on=@login do the check, if the value it too high generate an item and bounce it to the GM's backpack that notifies him that someone is over the limit.

With more complicated scripting, you could even send a dialog to the player and the GM, informing them of the situation. But that takes a bit more work.

if <skilltotal> > 750
serv.newitem i_deed
new.name=s:<skilltotal> u:<uid>
new.cont=<uid of gms backpack>
endif

this should work ^_^

----

Thanks, and yep, ill use that of modar 0

Thanks again!

[Image: 2hy9q0y.png]
10-17-2012 04:19 PM
Visit this user's website Find all posts by this user Like Post Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)