Solved change item magic

smoochy boys on tour

MythRohan

LOMCN Veteran
Veteran
Nov 18, 2011
2,147
82
135
Northant's Town : Serious Gamer
RecoveryRing and flame FlameRing are very basic like fireball and normal healing ...can i give them a new attack??/heal?? like a meteor ring . id love to kno this please

regards
myth rohan
 
Last edited:

Ilsta

Dedicated Member
Dedicated Member
Feb 20, 2012
563
23
80
Not that i know of as there hard coded, Don't forget in the hero files theres a few more such as memory items and what not, i'll upload the old help file soon if that be of help.
 
Upvote 0

MythRohan

LOMCN Veteran
Veteran
Nov 18, 2011
2,147
82
135
Northant's Town : Serious Gamer
u r a gem ilsta if i cud give u more rep i would :P thanks <3

---------- Post added at 12:53 AM ---------- Previous post was at 12:51 AM ----------

dam it works but when u click a highlighted button it says oops link appears to be broken >.<
lol

site must be down
 
Upvote 0

Breezer

Mr Mañana
Legendary
Jul 16, 2004
3,370
539
315
what about using TakeOn and TakeOff to add a custom spell ? thats what those rings do anyways ^_^
 
Upvote 0

MythRohan

LOMCN Veteran
Veteran
Nov 18, 2011
2,147
82
135
Northant's Town : Serious Gamer
how do u mean breezer gime an example :P
i know how to do it 1 way but dont know how to add magic

---------- Post added at 01:17 AM ---------- Previous post was at 01:11 AM ----------

please (sorry wheres is my manners) :)

---------- Post added at 04:47 AM ---------- Previous post was at 01:17 AM ----------

[TakeOn7]
#IF
CHECKITEMW ColdRing
#ACT
ADDSKILL IceStorm 0
#ELSEACT
CHECKUSEITEM 7 ColdRing
DELSKILL IceStorm

i used this... it brings the selected skill up on screen and adds it to your skills but when u take the ring off the skill stays there >.< any 1 kno the correct command to remove skill when the ring is taken off??

any help on this would be great

also i was making a summon ring but it doesnt seem to want to work

i used:


[TakeOn7]
#IF
CHECKITEMW SummonRing
#ACT
RECALLMOB Skeleton 2

any1 kno how i can resolve this 1 too??

pleaseee :)
 
Last edited:
Upvote 0

SuperDragon

Dedicated Member
Dedicated Member
Feb 12, 2012
467
9
45
Re: ================================================

a ring to add skill when wearing :

Code:
[TakeOn7]
#IF
Checkitemw MirrorRing
#ACT
ADDSKILL Mirroring 
break

if u want the skill to be removed when u unwear ring :

Code:
[TakeOff7]
#ACT
DeleteSkill Mirroring
not sure if this 1 works havent tested it yet.


==================================

thats a command to let users summon pets
when they r wearing SummonRing they r able to use @Summon or something like that

put in ur UserCmd.txt
summon 94
put in ur qfunction
Code:
[@UserCmd94]
#IF
CHECKITEMW SummonRing
#ACT
RecallMob Oma 2
break


hope that helps =]

regards
/Sin
 
  • Like
Reactions: MythRohan
Upvote 0

Shank

The_Mafia
VIP
Dec 4, 2008
2,082
17
165
Not that i know of as there hard coded.

-_-

------------------------------------------

!Setup.ini

[Names]
HealSkill=Healing
FireBallSkill=Fireball

Example;

[Names]
HealSkill=FireBang <<<<< now gives firebang spell when you put on recoveryring
FireBallSkill=ThunderStorm <<<<< now gives thunderstorm when you put on flamering
 
Upvote 0