Search:

Type: Posts; User: ebusiangamers

Search: Search took 0.00 seconds.

  1. Replies
    8
    Views
    51,122

    I come across many function with the same...

    I come across many function with the same structure as the on on the right. The functions in the screenshot below are supposed to be "equivalent". I find a lot more like this (right). Is something...
  2. Replies
    8
    Views
    51,122

    Using string work fine to find functions and...

    Using string work fine to find functions and offset. I search each crossref to find the bit of string that might exist in the other version. It's the huge pain in the arse when the string bit is...
  3. Replies
    8
    Views
    51,122

    This whole thing ...

    This whole thing

    https://github.com/M-itch/libcod/blob/master/declarations.hpp#L2138
  4. Replies
    8
    Views
    51,122

    How about equivalent offset? Is there an...

    How about equivalent offset? Is there an efficient way to recover them?
  5. Replies
    8
    Views
    51,122

    Unmatched functions between CoD

    Hi, I am trying to port to libcod to CoDUO. I am in this situation where in CoD 2, the subroutine (marked as 1 in the screenshot) is a seperate function while it is a set of instructions (marked as...
  6. Could you please describe the process of recover...

    Could you please describe the process of recover and extend "setanim" function?
  7. Need guidance to make an extension for CoDUO

    Hello,

    I'm just an ordinary modder: I just work on .gsc, never write a dll or something like that.
    I want to add libcod to CoDUO (windows), but dont know what to do, where to start.

    - I have...
  8. Replies
    10
    Views
    10,653

    The problem is solved! Thanks IzNoGod! :cool: :o...

    The problem is solved! Thanks IzNoGod! :cool: :o
    Indeed all informations are uploaded/downloaded as string, I post the final version of the functions (that work):


    get_db_field(fieldname,...
  9. Good point.

    Good point.
  10. GUID generator (sort of) for cracked server?

    Hello,

    I'm running a cracked server on CoDUO: the result is player GUIDs are all 0.
    GUIDs serve a bunch in MySQL: easier to search due to its unicity.

    So I decide to make this function.

    ...
  11. Replies
    10
    Views
    10,653

    1. Understood. 2. I modified the script as...

    1. Understood.
    2. I modified the script as below. Please post the corrected script if it is still incorrect (I need a reference to learn).
    3. I dont have enough knowledge to do such thing: learning...
  12. Replies
    10
    Views
    10,653

    1. I dont really understand this point. Please...

    1. I dont really understand this point. Please explain.
    2. Use "INSERT...ON DUPLICATE UPDATE..." doesn't change anything.
    3. This is CoDUOExtended, so it doesn't have it.
    5. The where user_guid =...
  13. Replies
    10
    Views
    10,653

    I got the function get_db_field(fieldname) to...

    I got the function get_db_field(fieldname) to work:

    get_db_field(fieldname) {
    query = "SELECT * FROM "+level.table+" WHERE `user_name`='"+ self.name +"' LIMIT 1";...
  14. Replies
    10
    Views
    10,653

    Thank you for replying. 1. I'm new to MySQL so...

    Thank you for replying.
    1. I'm new to MySQL so I'm kinda struggling with it.
    2. Will try and make a report on it.
    3. I'm testing CoDUOExtended (made by phpcod, not yet released), thus I can just...
  15. Replies
    10
    Views
    10,653

    Store player informations with MySQL.

    Hi all, this is my first post on killtube, I frequented at cod1.eu

    I used these 2 functions to exchange infos betweeen players and MySQL:

    set_db_field(fieldname, value) {
    ret = "";
    query =...
Results 1 to 15 of 15