Is there something in the new menus for 1.10 that might be holding me back?
So I got some to compile no problem but they dont work. I altered grymmjacks clogin and it works great in 1.08 but 1.08 i dont see the on and off from the mps. if any one has time next two days help me squash this also the go-mnu that lets you //\\ compiles but does not work.
Is there something in the new menus for 1.10 that might be holding me back?
I'm trying to find grymmjacks clogin app, but I can't find it. Can you post it somewhere?
so I updated my suicide mpl for 1.10 and it was working but stopped as
in it was marking a user as deleted but now its not. I took the code
from the mpl docs as such
GetThisUser
BitSet(3, UserFlags, True); // user is marked as deleted
any ideas? everything else works inline with it.
also I was using MX cmd to send the letter to the sysop with in the
mpl and it does not work sending to the email base. It will send it to a message base or is this a bug?
BitSet(3, UserFlags, True); // user is marked as deleted any ideas? everything else works inline with it.when I put the new mpl.doc together, I based the info of the new changes on what I found in the whatsnew.txt file. It appears that the bitset description accidentaly showed us how to delete a user. Unfortunately, I
also I was using MX cmd to send the letter to the sysop with in the mpl and it does not work sending to the email base. It will send it message base or is this a bug?It might need to be the perm index number of the email base. I don't
know if they are the same or not, but you might try that.
on 01/12/15, Gryphon said...
BitSet(3, UserFlags, True); // user is marked as del any ideas? everything else works inline with it.when I put the new mpl.doc together, I based the info of the new chan on what I found in the whatsnew.txt file. It appears that the bitset description accidentaly showed us how to delete a user. Unfortunatel
Well thats what I want it to do when they comit suicide. It was working before but it is now not.
also I was using MX cmd to send the letter to the sysop with in mpl and it does not work sending to the email base. It will sen message base or is this a bug?It might need to be the perm index number of the email base. I don't know if they are the same or not, but you might try that.
I tried it and it's not working for me. when I set it to 1 it goes to base 1. when I put it to 0 nothing. mutil i put 1 and it sends to email.
Im getting operator expected.
i have tmpstr declaired as a string and when i want to pass a time it
says operator expected. This is the line
tmpstr := timestr(datetime,0);
i just want to copy the time in 24hour format to tempstr..
is it me?
Since the email base is private, are you sure you're addressing the message properly? Are you certain its *not* there? If the spelling of your name is off, mystic may not accept it as a valid user, and then reject the message.
Did you see my response on FB yet?
The timestr function has the same requirements as the datestr function. I'm pretty sure I didn't update the timestr function with the new requirements in my updated mpl docs. Anyways, change 0 to UserDateStr
if you want it to follow the user's date/time format. Or just force the issue with a 1 and make it do MM/DD/YY.
on 01/12/15, Gryphon said...
Did you see my response on FB yet?
yes
The timestr function has the same requirements as the datestr functio I'm pretty sure I didn't update the timestr function with the new requirements in my updated mpl docs. Anyways, change 0 to UserDateSt if you want it to follow the user's date/time format. Or just force issue with a 1 and make it do MM/DD/YY.
but im not going by a date. Im going by hours and min a sysop is
available that is set in military time in the hours.txt
On 01/13/15, Dream Master said the following...
on 01/12/15, Gryphon said...
Did you see my response on FB yet?
yes
The timestr function has the same requirements as the datestr fu I'm pretty sure I didn't update the timestr function with the ne requirements in my updated mpl docs. Anyways, change 0 to UserD if you want it to follow the user's date/time format. Or just f issue with a 1 and make it do MM/DD/YY.
but im not going by a date. Im going by hours and min a sysop is available that is set in military time in the hours.txt
You are correct. I just checked a number of my scripts that use
TimeStr, and the format is:
TimeStr(LongInt,Boolean)
I don't know what the Boolean does. You can try both true and false and see how it differs.
but im not going by a date. Im going by hours and min a sysop is available that is set in military time in the hours.txtYou are correct. I just checked a number of my scripts that use
TimeStr, and the format is:
TimeStr(LongInt,Boolean)
I don't know what the Boolean does. You can try both true and false and see how it differs.
Ok, I tried it. When using TRUE, it adds an 'a' or 'p' to the time. False will add nothing.
WriteLn(TimeStr(DateTime,True))
10:33a
WriteLn(TimeStr(DateTime,False))
10:33
Ok, I tried it. When using TRUE, it adds an 'a' or 'p' to the time. False will add nothing.
tempstr := timestr(datetime,false);
delete(tempstr,6,3);
I have it set to display the result. the result is still
xx:xx format. the : should be xxxx after delete. or am i wrong in the delete with the 3?
tempstr := TimeStr(DateTime,False)
Delete(tempstr,6,3)
Delete(tempstr,3,1)
On 01/14/15, Gryphon said the following...
tempstr := TimeStr(DateTime,False)
Delete(tempstr,6,3)
Delete(tempstr,3,1)
you should be able to combine them, too, shouldn't you?
Delete(Delete(tempstr,3,1),6,3);
i'm not where i can look at any code examples or documentation right now :/
Deleting the last 3 chars, starting at position 6 would give you
"10:11", not "1011". You still need to run a separate command to delete the ':' in the middle.
tempstr := TimeStr(DateTime,False)
Delete(tempstr,6,3)
Delete(tempstr,3,1)
Delete(Delete(tempstr,3,1),6,3);
i'm not where i can look at any code examples or documentation right :/
I like Delete(Replace(TempStr,':',''),5,2). That one will delete all the colons ':' and then trim off the last 2 digits (chars).
yeah got that far but im getting my self lost on what is being converted to i can do the equation since this part of the mpl is no longer
yeilding the proper results:
----
hour1 := sstart / 60;
hour2 := send / 60;
mins1 := sstart % 60;
mins2 := send % 60;
so what, exactly, are you trying to do here??? you get the time and then what are you trying to spit out from it at the end of the process??
you should be able to combine them, too, shouldn't you?
Delete(Delete(tempstr,3,1),6,3);
i'm not where i can look at any code examples or documentation right now
Sysop: | Eric Oulashin |
---|---|
Location: | Beaverton, Oregon, USA |
Users: | 93 |
Nodes: | 16 (0 / 16) |
Uptime: | 09:18:35 |
Calls: | 5,231 |
Calls today: | 4 |
Files: | 8,493 |
D/L today: |
677 files (240M bytes) |
Messages: | 354,174 |