Jump to content

Dastgir

Script Developers
  • Content Count

    3805
  • Joined

  • Last visited

  • Days Won

    250

Everything posted by Dastgir

  1. You might need to edit Class name by Hexing(The Only Way without mods) or Diff your client with "Enable Custom Jobs" via Nemo and edit the lua files provided with that diff.
  2. Simple as that, many patches failed = 2014-06-13 client not supported by NEMO Patcher, and neither by hE(don't have its packet on packets.h) According to our packets.h, the last supported client by hE is 2014-04-16.
  3. Yep already test that, and got the same error specified above. _________________ Does it neccesary has to be ROCA_NIVEL_01 at const.txt? In case I want to change the name of the sprite, what should I do? I will test your suggestions now _______ EDIT _______ Not worked, still getting the error [Error]: status_set_viewdata (NPC): No view data for class 1500001.txt :CAlso getting the @disguise 15000 invalid NPC/monster ID error npc values are hardcoded in server, so for using that high npc id, you need to edit npc.h and recompile the server. So that server recognizes it as an npc.
  4. maybe put ws2_32.dll in your RO directory,the error simply means, client cannot locate send packet function from that dll.
  5. For the 1st image, get a translated texture folder.
  6. Dastgir

    Status Point

    If you have level 99, then edit stat point from line 99 from that statpoint.txt and restart
  7. If still they dont code, they can do like, if mes appear, they will be alerted by sound on pc, which can help them to see npc chat on openkore, and the npc message will be somethijg like, <LINK> recaptcha link </LINK> and so, making the link visible to openkore, so they can open up that link, enter recaptcha, and continue botting.
  8. still can bot, remember, those links are sended by mes command which are read by openkore, and they can see link, go to that link, and enter captcha. But I agree,it would be demotivational.
  9. Dastgir

    Status Point

    Edit db/(pre-)re/statpoint.txt
  10. eAthena back ! Atlast! but old boards seems to be unaccessible atm
  11. WTH!!! I am the only one who can't reproduce @market bug!!

  12. Not used mariadb, but it seems like, mariadb supports mysql, so you can use it(I dont think it will error out)
  13. @Naori, Try what arisgamers suggested. Most probably, there's a folder named .git in Desktop(made when you do git clone) and that makes it show those icons.
  14. http://herc.ws/board/topic/7188-market/
  15. Open any MySQL GUI You use, and repair the table named "char"
  16. @Cydh, Please avoid quoting many quotes.. Me Puts a Teaser : (still On Work)
  17. Dastgir

    data

    You don't have that item defined in System/itemInfo.lub(/.lua)
  18. Because it was done seperately with ripping from iRO , It will be committed to repo with some more optimization soon..
  19. +1 , I remember ind saying, if someone needs some struct to be integrated with plugin, he will code for that structs.
  20. sample.c struct sample_data_struct { struct point lastMSGPosition; unsigned int someNumber;};void sample_packet0f3(int fd) { struct map_session_data *sd = session[fd]->session_data; struct sample_data_struct *data; if( !sd ) return;/* socket didn't fully log-in? this packet shouldn't do anything then! */ ShowInfo("sample_packet0f3: Hello World! received 0xf3 for '%s', redirecting!n",sd->status.name); /* sample usage of appending data to a map_session_data (sd) entry */ if( !(data = getFromMSD(sd,0)) ) { CREATE(data,struct sample_data_struct,1); data->lastMSGPosition.map = sd->status.last_point.map; data->lastMSGPosition.x = sd->status.last_point.x; data->lastMSGPosition.y = sd->status.last_point.y; data->someNumber = rand()%777; ShowInfo("Created Appended map_session_data data, %d %d %d %dn",data->lastMSGPosition.map,data->lastMSGPosition.x,data->lastMSGPosition.y,data->someNumber); addToMSD(sd,data,0,true); } else { ShowInfo("Existent Appended map_session_data data, %d %d %d %dn",data->lastMSGPosition.map,data->lastMSGPosition.x,data->lastMSGPosition.y,data->someNumber); if( rand()%4 == 2 ) { ShowInfo("Removing Appended map_session_data datan"); removeFromMSD(sd,0); } } clif->pGlobalMessage(fd,sd);} I use that getfromMSD Method, and saves the data into sql at regular intervals..
  21. Dastgir

    data

    http://herc.ws/board/topic/398-client-translation-project/page-1 ^ This would be fine I think(It even contains textures for 2014-06 clients)
  22. To the best of my knowledge(I may be wrong,), you are having this issue because of one of these issues: 1) Having Less Ram to compile HPMHook Plugin. 2) Very Old gcc(compiler) 3) Using a weird OS
  23. to be specific, they are not php functions but standard functions for most languages..
  24. WRONG WAY..(by chantging uint64 to unsigned int, you are lowering the limit of that variable, which can cause undesirable effects.)instead change that %u To %" PRIu64 " p.s: the priu64 should be outside the quotes, and not inside the quotes. %d - int, supporting 2.14bil %u - unsigned int, supporting 0-4.xx bil Uint64 - supproting till billions of billions (correct this one, if I am wrong )
  25. Do not ever rely on skype: it sometimes sends my message 1 day late.. (experienced many times since last update of skype)
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.