Pet Intimacy

mrlongshen

Noobies
Messages
1,126
Points
0
Age
36
Location
localhost 127.0.0.1
Emulator
Hi all. I want to req a simple script on item database.

When click the item, increase the pet intimacy for 100.

So, if player click 10x times of Item, the pet intimacy will increase to 1000 and pet become friendly.

Besides that, a disbottom message show,

Your pet intimacy is now 100, then the value increase depends on how many times player click the item.

 
@@mrlongshen

Code:
.@friendliness = getpetinfo( 3 );if( .@friendliness < 1000 ) {	atcommand "@petfriendly " + ( .@friendliness + 10 );	dispbottom "Intimacy raised by 10.";} else {	dispbottom "Intimacy is allready at maximum.";}
 
Last edited by a moderator:
Back
Top