Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Crome969

Pages: 1 ... 3 4 [5] 6 7 ... 119
61
it don't work due to stealth bug
code for testing was:
Code: [Select]
procedure NumGumpTEntryTest();
begin
 ClientPrint(IntToHex(GetGumpId(GetGumpsCount-1), 8) + ' test');
 NumGumpTextEntry(GetGumpsCount-1, 0, 'Hello bitch');
end;


P.S. Tested on both 6.7.1 and latest 7.6.2 versions...

Not properly tested. You need to set and then interact. The change not appear on gumpinfo.

When you push a button and set text before this will be pushed else not shown on gump info.

So how to set things :
- Set Text
- Interact via Button to call an update.


62
Gold Farming / Re: [Freeshard] Doom Artisan
« on: October 03, 2016, 08:01:21 AM »
@Crome969
Hey Im also from the RWUO and that friend was templar and i also have his scripts but my question is do you think you could help me with his script because its broken in a few spots and i would love to be able to use it again but it messes up on a few things... if so give me a response and let me know what you think.

I wont be useful in any term because i hadnt touched any easyupo related scripts for 5 or more years`. If this script helps you fixing things, may it good else you are on your own. Sorry man.
And yeah Templers script inspired me back then. If i would rewrite the script nowadays i would make a Stealth client version out of it with fancy UI, Mail Support and all that superb stuff.

I remember back in my days when using a GM-Alert, so Staff dont ban me for AFK farming Gauntlet all night.. was funny  ;D ;D

63
Stealth Client / Re: [c# scriptsdk 0.9.7] how do you use edit in gumps?
« on: September 27, 2016, 01:06:42 AM »
i know youw wait for some support but before weekend i wont be able to look at it. My time lately is a bit limited :( Will try to help you as soon as possible..

64
Stealth Client / Re: Is Stealth 6.7.x more stable than 7.4.x
« on: September 21, 2016, 11:45:11 PM »
6.7 is stable version 7.x is more or less a beta. Vizit0r works hard making a new build of stealth but he is no longer playing uo himself. So he not have those special situations to script hardcore or test specific things on life situations. Once we provide reports he can fix and make stable. I myself also prefer 6.7 instead of 7.x, but for testing and code debugging purpose i need to stick to 7.x :)

65
Stealth Client / Re: [c# scriptsdk 0.9.7] how do you use edit in gumps?
« on: September 16, 2016, 08:04:49 AM »
I can test it the weekend after weekend. As best make a request on Git, so anyone who want to fix can try and react onto that bug request

66
Stealth Client / Re: Stealth Becomes Unresponsive
« on: September 07, 2016, 01:57:06 AM »
Please tell us more about client version. Stealth 7.x is pretty in its early stages i recommning stealth 6.7 client.

67
Stealth Client / Re: [c# scriptsdk 0.9.7] how do you use edit in gumps?
« on: September 05, 2016, 01:54:10 AM »
first make a gump with https://github.com/Crome696/ScriptSDK/blob/master/ScriptSDK/Gumps/Gump.cs then you will get an object with components and controls.
Then find the Text control you want to modify lets say its the first one :
Code: [Select]
Gump.TextEdits[0].Text = "123456";if you look into the source of Textedits :
https://github.com/Crome696/ScriptSDK/blob/master/ScriptSDK/Gumps/Controls/GumpTextEdit.cs

Code: [Select]
        public string Text
        {
            get { return _text; }
            set
            {
                if (!Limit.Equals(-1))
                    value = value.Substring(0, Limit);
                var index = Gump.GetGumpIndex(Owner.GumpType);
                if (Events.InvokeOnGumpReply(Owner,
                    new GumpReplyEventArgs(this,
                        (index >= 0) && Stealth.Client.NumGumpTextEntry((ushort)index, TextID, value))))
                    _text = value;
            }
}
The setter handles the Text sending

68
Stealth Client / Re: CheckLOS function broken?
« on: September 05, 2016, 01:50:24 AM »
hmm I'm playing on a RunUO server.

I guess I will have to create my own LOS Function, I'm guessing the function is determining if it's in sight based off range and the tile between the two targets?

Best idea is download runuo\servuo source and check that source, then adapt it.. Thats how i wrote SDK and XScript Framework. The structure is pretty good and it allows to design stuff on a good oop level.

69
Stealth Client / Re: CheckLOS function broken?
« on: September 04, 2016, 12:04:50 AM »
As far i remember, los calculation on stealth is based on runuo code. Not sure if this is still acurate & its not SDK but stealth framework part..

70
Stealth Client / Re: @Crome969
« on: August 31, 2016, 09:33:06 AM »

71
Stealth Client / Re: [c# scriptsdk 0.9.3] Do Know how to use types?
« on: August 16, 2016, 10:46:18 PM »

72
Stealth Client / Re: [c# scriptsdk 0.9.3] Do Know how to use types?
« on: August 16, 2016, 08:04:09 AM »
i think you may use an outdated version.
Latest source you can obtain here : https://github.com/Crome696/ScriptSDK

73
i havent worked on website lately.. time to change ;D

74
You talk about community edition? Should work straight..

PS. As we speak iam installing UO, so i might be back for more questions soon...

75
Stealth Client / Re: Reliably switching between accounts automated?
« on: August 03, 2016, 10:21:30 AM »
I have concepts about almost bulletproofed but thats from user side. I had endless discussions about this with vizit0r on client side :D

Pages: 1 ... 3 4 [5] 6 7 ... 119