Jump to content

pbuzz

Member
  • Posts

    124
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

pbuzz last won the day on February 14 2015

pbuzz had the most liked content!

About pbuzz

Informations

  • Gender
    Male

Recent Profile Visitors

1081 profile views

pbuzz's Achievements

Enthusiast

Enthusiast (6/16)

  • First Post
  • Collaborator
  • Conversation Starter
  • Week One Done
  • One Month Later

Recent Badges

31

Reputation

  1. you can: modify "money" column in bigint and val 255 + in source (server & client) change "money" variable (in offlineshop_manager, and in packets) from DWORD to long long
  2. pc.give_item2_select(item_vnum_here) item.set_value(0, bonus_index, bonus_value) item.set_value(1, bonus_index , bonus_value ) item.set_value(2, bonus_index , bonus_value ) item.set_value(3, bonus_index , bonus_value ) item.set_value(4, bonus_index , bonus_value ) and for 6th and 7th bonus(optional) item.set_value(5, bonus_index , bonus_value ) item.set_value(6, bonus_index , bonus_value )
  3. i've had the same problem as you because of "WorldEditor" extracted in "D:\Ymir Work". one solution for you is to rename "ymir work" folder from (D) to "what_ever_you_want" and another solution is to extract files from your client and add them to 'd:\ymir work'
  4. you are saying that you have "register" set to "true" but your php script is checking for a bool variable named "register_on" so, in your config file change "register: true" to "register_on: true"
  5. ​'p' is assigned to 'player.player' and 'idx' to 'player_index', what is so hard? to make it work for each empire replace "EMPIRE_HERE" with 1/2/3 1 - red 2 - yellow 3 - blue $qRedChars = mysql_query("SELECT COUNT(*) FROM player.player p, player.player_index idx WHERE p.account_id = idx.id AND idx.empire = 1"); $qYellowChars = mysql_query("SELECT COUNT(*) FROM player.player p, player.player_index idx WHERE p.account_id = idx.id AND idx.empire = 2"); $qBlueChars = mysql_query("SELECT COUNT(*) FROM player.player p, player.player_index idx WHERE p.account_id = idx.id AND idx.empire = 3");
  6. those queries are from log file. post "log.cpp" file from server
  7. in interface root->intrologin.py - line 12 change "import locale" to "import localeInfo"
  8. maybe your npc is loading texture from another folder(path) than 'npc', smt like 'monster' or 'monster2' check npc texture list for correct path
  9. yw, those colors are in RGB you can enter here [Hidden Content], choose your color and copy values from RGB textboxes
  10. syslog & syserr helps a lot you know? ps: this "sys_err("FDWATCH: peer null in event: ident %d", fdwatch_get_ident(m_fdWatcher, idx));" is retuned when something is wrong with your server, stoping that from showing won't stop the error to ocurr pps: this error usually ocurrs when a query failed to read and/or write some data from/into an inexistent value ppps: if can't write "FDW_WRITE" or read "FDW_READ" or is end of file "FDW_EOF" and no data is send or recived il will close that peer "RemovePeer(peer);", and if there is no peer "if (!peer)" (and i asume you realise no peer = core down) it will return this error "FDWATCH: peer null in event: ident %d", fdwatch_get_ident(m_fdWatcher, idx));"
  11. binary source - UserInterface - PythonTextTail
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.