Search found 596 matches

by Turley
Fri Jan 31, 2020 9:58 am
Forum: Current development (100)
Topic: razor negotiate feature
Replies: 2
Views: 3532

Re: razor negotiate feature

Mmmmh maybe I'm blind but I don't see anything which could be a problem for pol100.
What is the error?
by Turley
Tue Dec 31, 2019 1:07 am
Forum: UOFiddler
Topic: Music management
Replies: 8
Views: 6919

Re: Music management

If I remember correctly the music are real files in a client subfolder. So you don't need tools like fiddler to modify them.
by Turley
Tue Dec 31, 2019 1:05 am
Forum: Bug Reports & Feature Requests
Topic: Actions Translation for Newer Client
Replies: 4
Views: 4517

Re: Actions Translation for Newer Client

Cannot really remember it's a few years ago, but it could be that it's just a placeholder and not a valid animation.
Sending a run/walk animation without moving makes also not really sense and the client performs this animation automatically.
by Turley
Sat Dec 21, 2019 7:50 am
Forum: Current development (100)
Topic: POL 100 linux(debian) compile errors on recent revision
Replies: 7
Views: 6177

Re: POL 100 linux(debian) compile errors on recent revision

Modify cmake/Curl.cmake One of the first lines: set(CURL_FLAGS -DBUILD_CURL_EXE=OFF -DBUILD_TESTING=OFF -DCURL_STATICLIB=ON -DBUILD_SHARED_LIBS=OFF -DCURL_DISABLE_LDAP=ON -DCMAKE_USE_LIBSSH2=OFF) (CMAKE_USE_LIBSSH2 is the added text) then remove the lib/curl folder and run ./build_tools.sh -p This w...
by Turley
Sat Dec 21, 2019 1:54 am
Forum: Current development (100)
Topic: POL 100 linux(debian) compile errors on recent revision
Replies: 7
Views: 6177

Re: POL 100 linux(debian) compile errors on recent revision

Mmmh I searched a bit looks like the problem is that you have libssh2 available. And compiling with this lib as a static library does not work. Can you deinstall libssh2 or do you need it for something else? (Delete the curl folder and do a clean rebuild afterwards, so curl gets build again). I thin...
by Turley
Tue Dec 17, 2019 11:49 am
Forum: Bug Reports & Feature Requests
Topic: StrFormatTime error with latest POL100 core
Replies: 4
Views: 4391

Re: StrFormatTime error with latest POL100 core

I haven't tested it, but other people tested it without any problems.
I guess it's some kind of locale problem.
What is the value of the environment variable LANG and LC_TIME
by Turley
Sun Dec 15, 2019 5:36 am
Forum: Bug Reports & Feature Requests
Topic: gump error with latest pol100 core
Replies: 6
Views: 5148

Re: gump error with latest pol100 core

Thx, I think I found the bug and yes I introduced it with the unicode support. please test latest revision. I just committed a fix.
by Turley
Sat Dec 14, 2019 11:19 pm
Forum: Bug Reports & Feature Requests
Topic: gump error with latest pol100 core
Replies: 6
Views: 5148

Re: gump error with latest pol100 core

Can you post a packetlog of the 0xB1 message?
E.g. start packetlogging via .startlog reproduce the bug and stop packetlogging via .stoplog.
In the log folder a new log file with your account name should appear.
by Turley
Thu Dec 12, 2019 1:33 pm
Forum: Current development (100)
Topic: POL 100 linux(debian) compile errors on recent revision
Replies: 7
Views: 6177

Re: POL 100 linux(debian) compile errors on recent revision

Should be fixed now, but haven't tested it.
by Turley
Thu Dec 12, 2019 1:19 pm
Forum: Current development (100)
Topic: POL 100 linux(debian) compile errors on recent revision
Replies: 7
Views: 6177

Re: POL 100 linux(debian) compile errors on recent revision

Compiling without MySQL support is currently broken, the vagrant files are very outdated I think no one is currently using it. We all use likely some Ubuntu and if not we trust the CI of Travis for Linux builds.
by Turley
Wed Dec 11, 2019 2:55 am
Forum: Development Discussion
Topic: mf_SendTextEntryGumpUC in unimod.cpp
Replies: 10
Views: 7167

Re: mf_SendTextEntryGumpUC in unimod.cpp

No I mean that with pol100 the core is unicode aware. So you can directly build your gumps with unicode strings and the client can write into textboxes unicode strings without the need of hacks on the server side.
by Turley
Tue Dec 10, 2019 12:48 am
Forum: Development Discussion
Topic: mf_SendTextEntryGumpUC in unimod.cpp
Replies: 10
Views: 7167

Re: mf_SendTextEntryGumpUC in unimod.cpp

Then it should simply work, as long as your script file has the encoding utf8.
by Turley
Sat Dec 07, 2019 12:20 am
Forum: Development Discussion
Topic: mf_SendTextEntryGumpUC in unimod.cpp
Replies: 10
Views: 7167

Re: mf_SendTextEntryGumpUC in unimod.cpp

Which version are you using?
by Turley
Fri Dec 06, 2019 12:05 pm
Forum: Development Discussion
Topic: mf_SendTextEntryGumpUC in unimod.cpp
Replies: 10
Views: 7167

Re: mf_SendTextEntryGumpUC in unimod.cpp

There is no dedicated client function for an unicode version of the textentrygump.
If you need this simply create your own gump.
by Turley
Sun Oct 06, 2019 10:14 pm
Forum: Bug Reports & Feature Requests
Topic: Feature Request -An ecompile.cfg option.
Replies: 4
Views: 4492

Re: Feature Request -An ecompile.cfg option.

Sounds not that bad, something like "ErrorOnFileCaseMissMatch".
Please remind me once in a while ;)
by Turley
Wed Sep 11, 2019 9:50 pm
Forum: General Help
Topic: Uofiddler problem
Replies: 2
Views: 3574

Re: Uofiddler problem

If I remember correctly you need to link the object to the gump art via gump.def.
Check out the "Dress" tab in uofiddler, or the sources of it.
by Turley
Sun May 12, 2019 12:08 am
Forum: Scripting Help
Topic: How to prevent using commands/words?
Replies: 11
Views: 8660

Re: How to prevent using commands/words?

CChr(text["shit"]) makes no sense ;)
if (text.find("shit")) is an better option.
by Turley
Mon Apr 22, 2019 8:06 am
Forum: Scripting Help
Topic: How to: convert array into string?
Replies: 6
Views: 5609

Re: How to: convert array into string?

Code: Select all

", ".join(myarray)
Will do the trick
by Turley
Wed Mar 06, 2019 9:25 am
Forum: Scripting Help
Topic: [MySQL] How to send some info from MySQL to POL
Replies: 7
Views: 6414

Re: [MySQL] How to send some info from MySQL to POL

I hope that you don't expect any detailed answer for your problem when you just publish random script outputs without the code.
mysql_fetch_row returns an array like object to get the content simply use res[1], res[2],.. up until the number of rows you have in your query
by Turley
Tue Feb 19, 2019 12:24 pm
Forum: General Help
Topic: What do the Min and Max settings for X and Y do for gumps in an itemdesc file?
Replies: 4
Views: 4695

Re: What do the Min and Max settings for X and Y do for gumps in an itemdesc file?

These values have only a meaning if the core is responsible of finding a spot in a container. For example if you drop the item onto the container item. The client itself has per gump min/max coords (cannot remember if it is in some file defined or hard coded) which are used when the client drops an ...
by Turley
Wed Jan 23, 2019 12:36 pm
Forum: Scripting Help
Topic: Buff Icon Window
Replies: 35
Views: 22976

Re: Buff Icon Window

Atleast all official available servers have the same opinion about the packetstructure and that's equal to our packet documentation.
But if someone has the notion to fiddle around he is free to test the packet layout like documented on the ruosi site. Maybe we really miss some feature.
by Turley
Mon Jan 21, 2019 11:21 am
Forum: Scripting Help
Topic: Buff Icon Window
Replies: 35
Views: 22976

Re: Buff Icon Window

12-05-2015 Bodom: Added: Buff Bar support New Character's addBuff(), delBuff() and clearBuffs() methods, please see docs for details and explanation. 0xDF packets are automatically sent when needed (eg. at relogin). Buff Bar status is not saved, maybe it will be in future. So pol099
by Turley
Mon Jan 21, 2019 8:40 am
Forum: Scripting Help
Topic: Buff Icon Window
Replies: 35
Views: 22976

Re: Buff Icon Window

Before someone adds these packets via escript:
char.addBuff() char.clearBuffs(), char.delBuff() should do the trick ;)
by Turley
Sat Jan 12, 2019 12:57 am
Forum: Guides
Topic: Arrays and the Stuff Contained in the Squiggly Lines
Replies: 7
Views: 6161

Re: Arrays and the Stuff Contained in the Squiggly Lines

Ah that's the story behind the pull request ;)
It didn't exist since the beginning but since several years, atleast it mentioned in the core-changes, does any other doc even count? :P
02-15-2011 XXX:
Changed: "in" keyword now returns the arrayindex or 0 if no match was found