Possible or Impossible??

twigletuk

Golden Oldie
Golden Oldie
Oct 17, 2005
586
7
125
Crewe Cheshire
Is it possible to add a script. Were a player could wright down there own tital in like a global box. And then it show's up?

If this is possible could someone wright down a quick script of one?

If it's Impossible then please post back. That you can not do it.

Thanks
 

^G0trex

Golden Oldie
Golden Oldie
Nov 7, 2003
1,946
28
155
Bham
Is it possible to add a script where a player could write down their own title in like a global box, and then it shows up?

If this is possible could someone write down a quick script of one?

If it's impossible then please post back saying that you can not do it.

Thanks

Corrected a few spelling mistakes for you, but didn't bother restructuring your sentences so they actually make sense.

Not entirely sure what you're asking; you either want to give a player a customised title of their choice, or to make a global shout. Which is it?
 
Last edited:
Upvote 0

mStation

Golden Oldie
Golden Oldie
Oct 29, 2003
2,042
69
255
♫♪♫ ♦♥♠♣ ♀♂♀
i guess you have to make this manually.. i don't think it is possible..

i have tried to put variables into the
SETRANKLEVELNAME %s\ but everything after the \ is read as text and you can't put variables into it..

for example SETRANKLEVELNAME %s\<$USERNAME> doesn't make you have your name as a rank but the word "<$USERNAME>"
 
Upvote 0

steve

Golden Oldie
Golden Oldie
Oct 20, 2005
1,319
89
155
Reading
Corrected a few spelling mistakes for you, but didn't bother restructuring your sentences so they actually make sense.

Not entirely sure what you're asking; you either want to give a player a customised title of their choice, or to make a global shout. Which is it?
:thumbup2::lol1:
 
Upvote 0

twigletuk

Golden Oldie
Golden Oldie
Oct 17, 2005
586
7
125
Crewe Cheshire
Corrected a few spelling mistakes for you, but didn't bother restructuring your sentences so they actually make sense.

Not entirely sure what you're asking; you either want to give a player a customised title of their choice, or to make a global shout. Which is it?


I want them to type what ever tital they want in the global shout box and it pop's above your guild or name or w.e lol. I think they would like to choose there own tital. then i making up tital's. Sorry if i dint make sence i'll ask your help next time... Not really. any ways! Is this still possible?
 
Upvote 0

^G0trex

Golden Oldie
Golden Oldie
Nov 7, 2003
1,946
28
155
Bham
Who is your avatar Steve? who who who.

I was wondering that too!

I want them to type what ever tital they want in the global shout box and it pop's above your guild or name or w.e lol. I think they would like to choose there own tital. then i making up tital's. Sorry if i dint make sence i'll ask your help next time... Not really. any ways! Is this still possible?

Oh you mean like Mir 3. No is the answer...as they only way they save is through Qmanage so it has to be saved in there by yourself.
 
Upvote 0

IceMan

Hero's Act Mir 2
Legendary
Apr 17, 2003
8,544
2
370
350
help or get a 24 kool down ban as your spam is unneed

ash i will talk to you on msn
 
Upvote 0

Gezza

Golden Oldie
Golden Oldie
Sep 23, 2008
2,201
61
155
uk
No you can't do it, but you could come up with some ranks and let them choose out of a list from a npc.
 
Upvote 0

^G0trex

Golden Oldie
Golden Oldie
Nov 7, 2003
1,946
28
155
Bham
Simple...make it yourself.

Code:
[@main]
#SAY
Choose a title\ \
<Noob/@noob>\
<God/@god>

[@noob]
#ACT
SETRANKLEVELNAME %s\Noob
close


If you want it to save when they log out, apply a flag to it:

Code:
[@god]
#ACT
SETRANKLEVELNAME %s\God
SET [170] 1
close

And put the following in Qmanage:

Code:
[@Login]
#IF
CHECK [170] 1
#ACT
SETRANKLEVELNAME %s\God
 
Upvote 0

Gezza

Golden Oldie
Golden Oldie
Sep 23, 2008
2,201
61
155
uk
Just a quick basic script etc, so easy to do.

Npc
Code:
[@main]
Choose your rank name, <Here/@main1>\
Delete your ranks <Here/@delete>\

[@delete]
#if
#act
delnamelist ranks\hero.txt
delnamelist ranks\noob.txt
close

[@main1]
<hero/@hero> - <noob/@noob>\
<exit/@exit>

[@hero]
#act
addnamelist ranks\hero.txt
SETRANKLEVELNAME %s\<Hero>
close

[@noob]
addnamelist ranks\noob.txt
SETRANKLEVELNAME %s\<Noob>
close

Qmanage
Code:
[@main]
Choose your rank name, <Here/@main1>\
<exit/@exit>

[@main1]
<hero/@hero> - <noob/@noob>\

[@hero]
#act
addnamelist ranks\hero.txt
SETRANKLEVELNAME %s\<Hero>
close

[@noob]
#if
checknamelist ranks\noob.txt
#act
SETRANKLEVELNAME %s\<Noob>
break
#if
checknamelist ranks\hero.txt
#act
SETRANKLEVELNAME %s\<Hero>
close
 
Last edited:
Upvote 0

Lone

LOMCN Veteran
Veteran
Mar 15, 2007
278
12
64
Its well out of my league but couldnt this be done via a website?

i assume it would mean opening bits and pieces to allow outside access and might add pointless additions to the load on the server but if its possible to have the database being viewed on websites i would assume its possible to make changes to them via the same website.

If it required the users name and password to make the change it might work, The best person to ask might be Lifco simple because of the coding work he has done on the latest files i assume he has a pretty reasonable understanding of them.

But thats just a thought ^.^
 
Upvote 0