Jump to content

joshi

Inactive Member
  • Posts

    125
  • Joined

  • Last visited

  • Feedback

    0%

1 Follower

About joshi

  • Birthday 10/22/1994

Informations

  • Gender
    Male

Recent Profile Visitors

566 profile views

joshi's Achievements

Collaborator

Collaborator (7/16)

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

Recent Badges

32

Reputation

  1. You server files too big.. Me too was this error.. Check you language EUC-KR and your problem will be past
  2. Dear guys, I need help with c++ binary. How can i add a new player information to client? ex.: We have a information player.GetName() this in python show name but how can i add a new info ex. player.NEWINFO() Thanks.
  3. Open up the file under 'etc/mysql/my.cnf' Check for: port (by default this is 'port = 3306') bind-address (by default this is 'bind-address = 127.0.0.1'; if you want to open to all then just comment out this line. For my example, I'll say the actual server is on 10.1.1.7) Now access the MySQL Database on your actual server (say your remote address is 123.123.123.123 at port 3306 as user 'root' and I want to change permissions on database 'dataentry'. Remember to change the IP Address, Port, and database name to your settings) mysql -u root -p Enter password: <enter password> mysql>GRANT ALL ON *.* to root@'123.123.123.123' IDENTIFIED BY 'put-your-password'; mysql>FLUSH PRIVILEGES; mysql>exit
  4. #PermitRootLogin yes remove hashtag (#) so: PermitRootLogin yes #solved.
  5. But in auction system 0 yang and shop 10.000 yang? You can make refresh functions when someone buying item refresh. You need 2 refresh functions when someone buy in auction system then refresh offline shop and change in offline shop then refresh auction system.. You can add this refresh functions to Buy AnswerDialog
  6. More option Old mysql php other.. External port closed.. Send me private and i check for you
  7. Open server source/game/src/shop.cpp Search: sys_err("not enough shop window"); Replace: //sys_err("not enough shop window"); and Have fun
  8. Easy bro search in sf this syserr text and adding commet with //
  9. When a function in sf xy function Make check files unsigned bodyPart = GetPart(PART_MAIN); switch ( bodyPart ) { case 0: case 1: case 2: CheckWeapon function break; default: ChatPacket(CHAT_TYPE_NOTICE, "[OXEVENT] Take off your armor!"); break; } function CheckWeapon unsigned WeaponPart = GetPart(PART_WEAPON); switch ( WeaponPart ) { case 0: MAKE ALL FUNCTION AND LAST FUNCTION TAKE OPEN_OX_EVENT() break; default: ChatPacket(CHAT_TYPE_NOTICE, "[OXEVENT] Take off your Weapon!"); break; }
×
×
  • 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.