|
Joined: Dec 2008
Posts: 16
Pikka bird
|
OP
Pikka bird
Joined: Dec 2008
Posts: 16 |
Hello, i have an ini file
settings.ini
[options]
user1=bla|bla|bla|on
blah=bla|blabla|bla|off
...
possible change only the last section of the <value> ?? only the (on or off)  $gettok($readini($mircdirsettings.ini, options, user1),4,124) with writeini i can change only the complete <value>  someone basic idea 
|
|
|
|
Joined: Aug 2004
Posts: 7,168
Hoopy frood
|
Hoopy frood
Joined: Aug 2004
Posts: 7,168 |
var %a = $readini($mircdirsettings.ini,n,options,user1)
var %b = $gettok(%a,-1,124)
%a = $gettok(%a,1--1,124)
%a = $+(%a,$chr(124),$iif(%b = on,off,on)
.writeini -n $mircdirsettings.ini options user1 %a
|
|
|
|
Joined: Dec 2008
Posts: 16
Pikka bird
|
OP
Pikka bird
Joined: Dec 2008
Posts: 16 |
merry xmas thank you so much
|
|
|
|
Joined: Jan 2007
Posts: 1,155
Hoopy frood
|
Hoopy frood
Joined: Jan 2007
Posts: 1,155 |
Looks like a good use for $reptok. var %r = $readini(settings.ini,options,user1) writeini settings.ini $reptok(%r,$gettok(%r,4,124),Off,1,124) You would most likely use $1 instead of Off. Here is an example. /test On
menu channel {
Turn $iif($gettok($readini(settings.ini,options,user1),4,124) == On,Off,On) :test $iif($v1 == On,Off,On)
}
alias test {
var %r = $readini(settings.ini,options,user1)
writeini settings.ini $reptok(%r,$gettok(%r,4,124),$1,1,124)
}
|
|
|
|
Joined: Dec 2008
Posts: 16
Pikka bird
|
OP
Pikka bird
Joined: Dec 2008
Posts: 16 |
Hello, Looks like a good use for $reptok. Here is an example. /test On
menu channel {
Turn $iif($gettok($readini(settings.ini,options,user1),4,124) == On,Off,On) :test $iif($v1 == On,Off,On)
}
alias test {
var %r = $readini(settings.ini,options,user1)
writeini settings.ini $reptok(%r,$gettok(%r,4,124),$1,1,124)
}
very nice  working only in one site  but good tip
|
|
|
|
Joined: Jan 2007
Posts: 1,155
Hoopy frood
|
Hoopy frood
Joined: Jan 2007
Posts: 1,155 |
I'm glad you got use out of it. What do you mean one site? This has to do with an ini file.
|
|
|
|
Joined: Dec 2008
Posts: 16
Pikka bird
|
OP
Pikka bird
Joined: Dec 2008
Posts: 16 |
Hello, i meant that it works only in one direction. To go back into starting position it has to be manual /test... .
|
|
|
|
Joined: Dec 2008
Posts: 16
Pikka bird
|
OP
Pikka bird
Joined: Dec 2008
Posts: 16 |
Hello, i made an alternative with $reptok and i have put it in a $submenu settings.ini:
[options]
blabla=bla1|bla2|bla3|on|bla4
user1=Test1|Test2|Test3|on|Test4
and here my $submenu
menu * {
List
.$submenu($sub_menu($1))
}
alias sub_menu {
var %ini = $mircdirsettings.ini
if ($ini(%ini,options,$1)) {
var %item = $ifmatch
var %tok = $readini(%ini,options,%item)
var %state = $gettok($readini(%ini,options,%item),4,124)
var %safe = $reptok(%tok,%state,$iif(%state = on,off,on),1,124)
return $iif(%state == on,$style(1) %item %state,%item %state) : writeini -n %ini options %item %safe
}
}
|
|
|
|
|