Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 07/06/17 in all areas

  1. Hi everybody, You probably know the project RoBrowser by KeyWorld (a RO client on webbrowser). The project is dead since few years, but personnally I see real potential in this project. So that's why my new challenge is to update the robrowser (and potentially finish it). Here the main todo list : Guild Skill Cash shop UI Vending skill Homunculus basic AI Cart inventory Mail system Costume system All the hardcoded specialeffects (warp, heal, etc) Actually I worked ~40hours on it, I've done : Guild skill Cart system Main effect : heal, agiup, warp npc, etc Costume system And I just started CashShop. So this topic is because I am currently looking for 1-2 developpers motivated (and experienced for God's sake) to help me on this hard task. I hope this will be seen by someone who believes on that kind of project. Anyway, Thanks for reading ! Vykimo
    1 point
  2. you're welcome , don't forget to change the map int the pre-edited script!
    1 point
  3. it work with Microsoft Authenticator windows phone app tested thanks for the feature
    1 point
  4. Hello again, @Questune09 please do not use word "Masters" for greetings, instead use friends, guys anyway.. you forgot to use getarg(4) getarg(5) A: manually Add & replace B: copy & paste the full edited script A step 1: add || countitem( getarg(4) ) < getarg(5) to if( countitem( getarg(2) ) < getarg(3) step 2: replace mes "Exchange "+getarg(3)+" "+getitemname( getarg(2) )+" into "+getarg(1)+" "+getitemname( getarg(0) )+"?"; to mes "Exchange "+getarg(3)+" "+getitemname( getarg(2) )+" and 1 "+getitemname ( getarg(4) )+" into "+getarg(1)+" "+getitemname( getarg(0) )+"?"; step 3: add delitem getarg(4),getarg(5); under mes "Done"; delitem getarg(2),getarg(3); B for pre-edited script: veil,120,100,4 script Memory of Tears 10092,{ function Exchange; mes "Why you are here??"; mes "Oh a Energy Debris and Job soul i like that give me that choose one"; next; switch( select( "Old Rune Circlet [1]", "Old Mitra [1]", "Old Driver Band [1]", "Old Driver Band (Yellow) [1]", "Old Shadow Crown [1]", "Old Minstrel Song [1]", "Old Midas Whisper [1]", "Old Magic Stone Hat [1]", "Old Burning Spirit [1]", "Old Wispers of Wind [1]", "Old Circlet of Bone [1]", "Old Guardian Crown [1]", "Old Camouflage of Rabbit Hood [1]" )){ // Exchange( <Item Gained>,<Amount>,<Item Required>,<Amount> ); case 1: Exchange( 18971,1,6820,50,6814,1 ); break; case 2: Exchange( 18972,1,6820,50,6819,1 ); break; case 3: Exchange( 18973,1,6820,50,6815,1 ); break; case 4: Exchange( 18974,1,6820,50,6815,1 ); break; case 5: Exchange( 18983,1,6820,50,6816,1 ); break; case 6: Exchange( 18976,1,6820,50,6818,1 ); break; case 7: Exchange( 18977,1,6820,50,6815,1 ); break; case 8: Exchange( 18978,1,6820,50,6817,1 ); break; case 9: Exchange( 18979,1,6820,50,6819,1 ); break; case 10: Exchange( 18980,1,6820,50,6817,1 ); break; case 11: Exchange( 18982,1,6820,50,6816,1 ); break; case 12: Exchange( 18983,1,6820,50,6814,1 ); break; case 13: Exchange( 18984,1,6820,50,6818,1 ); break; default: mes "Wrong Selection"; break; } close; function Exchange { mes "Exchange "+getarg(3)+" "+getitemname( getarg(2) )+" and 1 "+getitemname ( getarg(4) )+" into "+getarg(1)+" "+getitemname( getarg(0) )+"?"; if(select("Yes","No")==1){ if( countitem( getarg(2) ) < getarg(3) || countitem( getarg(4) ) < getarg(5) ){ mes "Sorry you didnt have enough Items to trade."; close; }else{ next; mes "Done"; delitem getarg(2),getarg(3); delitem getarg(4),getarg(5); getitem getarg(0),getarg(1); } } return; } } Enjoy, Ceil phantomhive
    1 point
  5. wget http://people.centos.org/tru/devtools-2/devtools-2.repo -O /etc/yum.repos.d/devtools-2.repo yum -y install devtoolset-2-gcc devtoolset-2-binutils devtoolset-2-gcc-c++ devtoolset-2-gcc-gfortran scl enable devtoolset-2 bash source /opt/rh/devtoolset-2/enable run this commands to update your GCC, then check your GCC version and i suggest you to update your os to centos 7 make sql make server still works fine
    1 point
  6. When it's finish and ready to "Free Download" ?
    1 point
×
×
  • Create New...