Jump to content

Manny

Members
  • Posts

    6
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling
  • Location
    France

Manny's Achievements

Poring

Poring (1/15)

1

Reputation

  1. Perfect ! Thanks a lot ! Manny.
  2. Hello guys, I would like to know if there is a way to spawn an npc on a random map. I'll show you my attempt: - script Test#Ro -1,{ end; OnInit: movenpc(strnpcinfo(0), callfunc("GetRandMap"), 0, 0); // <- Something like this end; } But the command movenpc allow only to movenpc on the same map. How can I do this ? Thanks for the answer.
  3. Hello everybody ! I'm looking into msgstringtable.txt, and I'm very interested about these lines: [%s] deal '%d' damage on you.# [%s] received a damage from [%s] with '%d' damage.# [%s] received '%d' damage.# [%s] deal damage to [%s] with '%d' damage.# I would like to know where these lines are sent source-side. I was pretty convinced about 'clif.c', but I admit that I just can't find it. Can you help me ?
  4. @Aleos : You made my week This worked perfectly: INSERT INTO `global_reg_value` (`account_id`, `str`, `value`, `type`) SELECT `account_id`, `key`, `value`, 2 FROM `acc_reg_num_db` WHERE `key` NOT LIKE '#%$'; INSERT INTO `global_reg_value` (`account_id`, `str`, `value`, `type`) SELECT `account_id`, `key`, `value`, 2 FROM `acc_reg_str_db` WHERE `key` LIKE '#%$'; INSERT INTO `global_reg_value` (`char_id`, `str`, `value`, `type`) SELECT `char_id`, `key`, `value`, 3 FROM `char_reg_num_db` WHERE `key` NOT LIKE '%$'; INSERT INTO `global_reg_value` (`char_id`, `str`, `value`, `type`) SELECT `char_id`, `key`, `value`, 3 FROM `char_reg_str_db` WHERE `key` LIKE '%$'; Thanks a lot !
  5. Hi guys, First, I'm sorry about my english, this is not my native language. I'll try my best. I come from hercules, and to be honest, they have a great emulator if we're not looking after third classes. I started a new serveur few weeks ago, and players keep requesting me about some skill from third classes that don't work. I'm fixing each skill by comparing with rAthena sources, and *MAGIC* there is no problem. I don't have a lot of player, they all leaved because of third classes bugs. Now, since yesterday, i'm trying to migrate to rAthena from hercules. Everything was great, until I started the mysql migration. Well, this is my problem : I had to transfer `char_reg_num_db` and `char_reg_str_db` into `global_reg_value` -> Perfectly done ! Now i'm transfering `acc_reg_num_db` and `acc_str_num_db` into `global_reg_value` and I keep getting this error : #1062 - Duplicate entry '0-#CASHPOINTS-2000000' for key 'PRIMARY' I tried a lot, but I have this error on each lines i'm trying to add. Do you know how can I fix it ? Thank you for your help, Manny. Ps: I truncated my table each time I tried to add something, to be sure that my table is realy empty. Ps2: Sorry for my bad english, I did my best. Ps3: I don't know if i'm in the right place to post this topic :s Sorry for my mistake
  6. Wrong section, sorry. btw, already fixed here : http://rathena.org/board/topic/96970-hercules-to-rathena/
×
×
  • Create New...