Jump to content

Balfear

Members
  • Posts

    256
  • Joined

  • Last visited

  • Days Won

    34

Everything posted by Balfear

  1. You need to use this check if(!getlook(LOOK_BODY2)) // if no bodystyle if(getlook(LOOK_BODY2) == 1) // if bodystyle 1 if(getlook(LOOK_BODY2) == 2) // if bodystyle 2
  2. Idk about encryption keys in new clients, try to ask about it @4144, maybe he can help you.
  3. 2018-06-21 don`t support high item id, you need exe ragexe 2018-11-21 or ragexere 20180704
  4. What error do you have?
  5. Useful log. But I think you forgot include SQL table, I don`t found it. And it would be nice to add support Pre/Re mode. if($server->isRenewal) { $fromTables = "{$server->charMapDatabase}.item_db_re"; } else { $fromTables = "{$server->charMapDatabase}.item_db"; }
  6. if(getlook(LOOK_BODY2))
  7. I spoke with him two days ago, he is a little busy now. He will definitely answer himself when he is free.
  8. https://github.com/rathena/rathena/wiki/Clientinfo.xml Change or delete admin account in Clientinfo.xml. If you write there your account_id then it will be always showed gm clothes for all chars from this account. <admin>2000000</admin>
  9. Forgot this: https://github.com/rathena/rathena/blob/master/src/common/mmo.hpp#L1067 change to MAX_CARTS 13
  10. Add new cart in function (// new cart) https://github.com/rathena/rathena/blob/master/src/map/clif.cpp#L12332 void clif_parse_ChangeCart(int fd,struct map_session_data *sd) {// TODO: State tracking? int type; if( !sd || pc_checkskill(sd, MC_CHANGECART) < 1 ) return; #ifdef RENEWAL if (sd->npc_id || pc_hasprogress(sd, WIP_DISABLE_SKILLITEM)) { clif_msg(sd, WORK_IN_PROGRESS); return; } #endif type = (int)RFIFOW(fd,packet_db[RFIFOW(fd,0)].pos[0]); if( #ifdef NEW_CARTS (type == 9 && sd->status.base_level > 130) || (type == 8 && sd->status.base_level > 120) || (type == 7 && sd->status.base_level > 110) || (type == 6 && sd->status.base_level > 100) || (type == 13 && sd->status.base_level > 100) || // new cart #endif (type == 5 && sd->status.base_level > 90) || (type == 4 && sd->status.base_level > 80) || (type == 3 && sd->status.base_level > 65) || (type == 2 && sd->status.base_level > 40) || (type == 1)) pc_setcart(sd, type); } and https://github.com/rathena/rathena/blob/master/src/common/mmo.hpp#L1067change toMAX_CARTS 13
  11. From last jRo client (2020-08-02). There are all palettes for costume_1 data.rar
  12. This is "Barter" / "Expanded barter" type shop, it is not implanted yet in rathena. https://github.com/rathena/rathena/issues/5062
  13. Hi, I think you search this http://roworkshop.com/andro/main/index.html
  14. Delete only && !(rnd()%100). Did you recompile the server?
  15. in grf: data\luafiles514\lua files\signboardlist.lub
  16. You have error with elemental bonus, change it to bonus2 because it use two var. bonus2 bMagicAddEle,Ele_All, .@r/4*5; bonus2 bMagicAddEle,Ele_Neutral, .@r/4*5;
  17. do you change scale in act file?
  18. If change image size then the sprite loses quality in game.
  19. I am not satisfied some part of sprites and they need to be reworked, when i finished to rework npc sprites i can share it. I test jobs sprites in new clients 2020-04-01 and UI still don`t read scale from ACT. And it looks like this: For now i can`t find any way to slove this problem. I can share RuneKnigh (male) + RuneKnigh Mount (male) sprite for test, maybe anyone find the solution and I can finished rework jobs, then I`ll share it for free. RuneKnight.grf
  20. Gravity don`t give any info about release date. http://ro.gnjoy.com/news/devnote/View.asp?category=1&seq=4064142&curpage=1
  21. prontera,150,190,4 script Example_changer 83,{ mes "Hello!"; mes "I can pack your items in the box."; mes "What items you want to pack?"; next; .@i = select(.menu$+"Cancel")-1; if(.@i == getarraysize(.boxid)) { mes "Bye~"; close; } mes "To make "+getitemname(.boxid[.@i]); mes "I need ^0000FF"+getitemname(.item[.@i])+"^000000 - "+.amount[.@i]+" ea."; next; select("Ok"); if(countitem(.item[.@i]) < .amount[.@i]) { mes "You don`t have enough items."; close; } mes "Here your "+getitemname(.boxid[.@i])+"~"; delitem .item[.@i], .amount[.@i]; getitem .boxid[.@i],1; close; OnInit: setarray .item[0], 608, 607; setarray .amount[0], 30, 15; setarray .boxid[0], 12534, 12535; for( .@i = 0; .@i < getarraysize(.boxid); .@i++ ) .menu$ = .menu$ + getitemname(.boxid[.@i])+":"; end; } Hi, i write a simple script for you, you can add new item and box after OnInit. If you want to show items name and ea. change .menu$ = .menu$ + getitemname(.boxid[.@i])+":"; to .menu$ = .menu$ + getitemname(.item[.@i])+" - "+.amount[.@i]+" ea.:";
  22. Do you save icons in png format with transparent background?
  23. in grf: data\luafiles514\lua files\signboardlist.lub
  24. Try to replace your maps
  25. Hello, you can use vip_status(1) if (vip_status(1)){ specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,240000,10; specialeffect2 EF_BLESSING; sc_start SC_BLESSING,240000,10; }
×
×
  • Create New...