Jump to content

noobzter003

Members
  • Posts

    109
  • Joined

  • Last visited

Everything posted by noobzter003

  1. anyone know how to make it work this features in PRE-RENEWAL, bcoz this feature is working in RENEWAL ONLY this is the script https://github.com/rathena/rathena/commit/8dea04a8b3895398a5c62e06dc8cf920cebd43df THANKS IN ADVANCE HAVE A GREAT DAY!
  2. i see your not using the official VIP system, i think better you use the official vip system. to enable the official vip system edit rathena\src\config\core.hpp /// Uncomment to enable VIP system. #define VIP_ENABLE then use this script to buy vip using cash points prontera,155,180,4 script VIP Central 4_F_KAFRA1,{ OnTalk: mes .npc$; mes (gettime(3)>= 6&&gettime(3)<= 12?"Good Morning":(gettime(3)>=13&&gettime(3)<=18?"Good Afternoon":"Good Evening"))+", ^008aff"+strcharinfo(0)+"^000000 !"; mes "Welcome to VIP Central."; if (vip_status(1)) { mes "^008affYour VIP access will expire on " + callfunc("Time2Str",vip_status(2)) + ".^000000"; mes " "; } mes "How can I help?"; next; switch (select(.bcor$+"I want to go to Central VIP.",""+((vip_status(1))?""+.bcor$+"I want to extend my time ^008affVIP^000000.":""+.bcor$+"I wish to become a ^008affVIP^000000 player."),""+.rcor$+"I do not want anything.")){ case 1: if (!vip_status(1) ) { mes .npc$; mes "Excuse me! Access to VIP Central is only allowed to ^008affVIP^000000 players."; mes "-----------------------------------"; mes "Visit our website and learn how to become a ^008affVIP^000000 player."; mes "-----------------------------------"; close; } warp .map$,.cord[0],.cord[1]; end; case 2: mes .npc$; mes "How many days of access ^008affVIP^000000 do you want to acquire?"; next; .@i = select( .bcor$+""+.vip_day[0] + " Days." ,.bcor$+""+.vip_day[1] + " Days." ,.bcor$+""+.vip_day[2] + " Days." ) - 1; mes .npc$; mes "You chose the plan of:"; mes "^4527A0VIP:^000000 "+.vip_day[.@i]+" VIP days."; mes "^4527A0Price:^000000 "+F_InsertComma(.vip_cashpoint[.@i])+" #CASHPOINTS."; sleep2 1000; mes " "; mes " "; mes "What do you want to do?"; next; switch(select(.bcor$+"Purchase:"+.rcor$+"Cancel")){ case 1: if ( #CASHPOINTS < .vip_cashpoint[.@i] ) { mes .npc$; mes "You do not have the quantity of ^008aff"+F_InsertComma(.vip_cashpoint[.@i])+" #CASHPOINTS^000000."; close; } else { #CASHPOINTS -= .vip_cashpoint[.@i]; vip_time (.vip_day[.@i] * 1440); mes .npc$; mes "Congratulations you just got "+.vip_day[.@i]+" days VIP."; close; } end; case 2: mes .npc$; mes "All right, come back whenever you want."; close; } case 3: close; } OnInit: .npc$ = "^FF7F00[ VIP Central ]^000000"; // Name of NPC; .bcor$ = "^008aff[»]^000000 "; // Option Button Symbol; .rcor$ = "^ff0000[»]^000000 "; // Cancel button symbol; setarray .vip_day,7,14,30; // Number of days that can be purchased; setarray .vip_cashpoint,4000,7000,10000; // Price in #CASHPOINTS; .map$ = "sec_in02"; // VIP Room Map; setarray .cord,130,161; // X and Y Coordinate; end; }
  3. 10 Seconds Delay to @warp and @go when hit for latest rathena git Thanks!
  4. can you provide the errors? in my test server its working fine
  5. - script VIP_STATUSs -1,{ OnPCLoginEvent: if ( vip_status(1) ) { //sc_start SC_EXPBOOST,1000*60*60*24,0; set .@Timer, vip_status(2); dispbottom "You're VIP."; dispbottom "============================================="; dispbottom "Account Status : VIP Account"; dispbottom "Account Status : Enable to warp in VIP Central!"; dispbottom "Account Status : Exp & Job Increase 30%"; dispbottom "Account Status : Drop Increase 20%"; dispbottom "Time left : "+ callfunc("Time2Str",.@Timer); dispbottom "============================================"; end; } }
  6. Thank you ! i will test now. THANK YOU VERY MUCH!!!!!!! hi sir @Emistry is there any way to put time limit you can stay in vip central? example 1hour you can stay in that map after 1hour you will be kicked back to prontera automatic
  7. how to make this script, if you register VIP for 30 days you can receive limited edition headgear example (Poring Hat). there's 3 choices u can purchase 7 days , 15 days & 30 days but i want only in 30days you can receive the limited editon of headgear. sorry for my bad English i hope you guys understand. thanks in advance prontera,146,174,5 script VIP Central 4_F_KAFRA1,{ OnTalk: mes .npc$; mes (gettime(3)>= 6&&gettime(3)<= 12?"Good Morning":(gettime(3)>=13&&gettime(3)<=18?"Good Afternoon":"Good Evening"))+", ^008aff"+strcharinfo(0)+"^000000 !"; mes "Welcome to VIP Central."; if (vip_status(1)) { mes "^008affYour VIP access will expire on " + callfunc("Time2Str",vip_status(2)) + ".^000000"; mes " "; } mes "How can I help?"; next; switch (select(.bcor$+"I want to go to Central VIP.",""+((vip_status(1))?""+.bcor$+"I want to extend my time ^008affVIP^000000.":""+.bcor$+"I wish to become a ^008affVIP^000000 player."),""+.rcor$+"I do not want anything.")){ case 1: if (!vip_status(1) ) { mes .npc$; mes "Excuse me! Access to VIP Central is only allowed to ^008affVIP^000000 players."; mes "-----------------------------------"; mes "Visit our website and learn how to become a ^008affVIP^000000 player."; mes "-----------------------------------"; close; } warp .map$,.cord[0],.cord[1]; end; case 2: mes .npc$; mes "How many days of access ^008affVIP^000000 do you want to acquire?"; next; .@i = select( .bcor$+""+.vip_day[0] + " Days." ,.bcor$+""+.vip_day[1] + " Days." ,.bcor$+""+.vip_day[2] + " Days." ) - 1; mes .npc$; mes "You chose the plan of:"; mes "^4527A0VIP:^000000 "+.vip_day[.@i]+" VIP days."; mes "^4527A0Price:^000000 "+F_InsertComma(.vip_cashpoint[.@i])+" #CASHPOINTS."; sleep2 1000; mes " "; mes " "; mes "What do you want to do?"; next; switch(select(.bcor$+"Purchase:"+.rcor$+"Cancel")){ case 1: if ( #CASHPOINTS < .vip_cashpoint[.@i] ) { mes .npc$; mes "You do not have the quantity of ^008aff"+F_InsertComma(.vip_cashpoint[.@i])+" #CASHPOINTS^000000."; close; } else { #CASHPOINTS -= .vip_cashpoint[.@i]; vip_time (.vip_day[.@i] * 1440); mes .npc$; mes "Congratulations you just got "+.vip_day[.@i]+" days VIP."; close; } end; case 2: mes .npc$; mes "All right, come back whenever you want."; close; } case 3: close; } OnInit: .npc$ = "^FF7F00[ VIP Central ]^000000"; // Name of NPC; .bcor$ = "^008aff[»]^000000 "; // Option Button Symbol; .rcor$ = "^ff0000[»]^000000 "; // Cancel button symbol; setarray .vip_day,7,14,30; // Number of days that can be purchased; setarray .vip_cashpoint,4000,7000,10000; // Price in #CASHPOINTS; .map$ = "sec_in02"; // VIP Room Map; setarray .cord,130,161; // X and Y Coordinate; end; }
  8. hi sir  can u help me about this problem 

    thanks in advance

     

  9. oh thank!! but how come mine is not working, what do you think sir? UP! anyone can help me? please!!! ill make it work but in renewal only, how to make it work in pre-re its working only in renewal pre re not working
  10. still the same sir ? iwant to ask if this feature working on pre-renewal. or it work on renewal only?
  11. i already did but still the same ? im using this client version 2018-06-20eRagexeRE
  12. https://www.divine-pride.net/database/item/25464 i have this code number 25464 but still not working.
  13. Anyone can help me to fix this? Thanks in advance!!!
  14. @meyraw Andro ist support with 2018 clients?
  15. can i have sample of your clientinfo.xml
  16. Where do i need to edit the patcher to update the client? TIA
  17. <?xml version="1.0" encoding="euc-kr" ?> <clientinfo> <servicetype>korea</servicetype> <servertype>primary</servertype> <connection> <display>RagnarokDeep</display> <address>95.211.121.52</address> <port>6900</port> <version>29</version> <langtype>0</langtype> <registrationweb>http://ragnarokdeep.com/mreg</registrationweb> <desc>For European players</desc> <website>http://ragnarokdeep.com</website> <type>Deep</type> <packetver>20120712</packetver> <nationality>gb</nationality> <res>roworkshop.com</res> <res-port>4121</res-port> <res-subdir>deep-130303</res-subdir> <grf>deep.grf</grf> <grf>deep_pal.grf</grf> <grf>data.grf</grf> <patchserver> <http>http://ragnarokdeep.com/res/pl/patch.txt</http> <ftp>ftp://ftp.ragnarokdeep.com/patchk</ftp> <grf>data.grf</grf> <inf>Patch.inf</inf> </patchserver> <patchserver> <http>http://ragnarokdeep.com/res/pl/patchd.txt</http> <ftp>ftp://ftp.ragnarokdeep.com/patchd</ftp> <grf>deep.grf</grf> <inf>dpatch.inf</inf> </patchserver> <iteminfo>deepitem</iteminfo> <luafiles514>true</luafiles514> <eathena>true</eathena> <support_stop_packet>true</support_stop_packet> <support_billing>true</support_billing> <loading> <image>loading00.jpg</image> <image>loading01.jpg</image> <image>loading02.jpg</image> <image>loading03.jpg</image> <image>loading04.jpg</image> <image>loading05.jpg</image> <image>loading06.jpg</image> <image>loading07.jpg</image> <image>loading08.jpg</image> <image>loading09.jpg</image> <image>loading10.jpg</image> </loading> </connection> <connection> <display>RagnarokDeep-Asia</display> <address>95.211.121.52</address> <port>6900</port> <version>29</version> <langtype>0</langtype> <registrationweb>http://ragnarokdeep.com/mreg</registrationweb> <desc>For Asian players</desc> <website>http://ragnarokdeep.com</website> <type>Deep</type> <packetver>20120712</packetver> <nationality>th</nationality> <nationality>ph</nationality> <nationality>sg</nationality> <res>asia.ragnarokdeep.com</res> <res-port>4121</res-port> <res-subdir>deep-130303</res-subdir> <grf>deep.grf</grf> <grf>deep_pal.grf</grf> <grf>data.grf</grf> <patchserver> <http>http://ragnarokdeep.com/res/pl/patch.txt</http> <ftp>ftp://ftp.ragnarokdeep.com/patchk</ftp> <grf>data.grf</grf> <inf>Patch.inf</inf> </patchserver> <patchserver> <http>http://ragnarokdeep.com/res/pl/patchd.txt</http> <ftp>ftp://ftp.ragnarokdeep.com/patchd</ftp> <grf>deep.grf</grf> <inf>dpatch.inf</inf> </patchserver> <iteminfo>deepitem</iteminfo> <luafiles514>true</luafiles514> <eathena>true</eathena> <support_stop_packet>true</support_stop_packet> <support_billing>true</support_billing> <loading> <image>loading00.jpg</image> <image>loading01.jpg</image> <image>loading02.jpg</image> <image>loading03.jpg</image> <image>loading04.jpg</image> <image>loading05.jpg</image> <image>loading06.jpg</image> <image>loading07.jpg</image> <image>loading08.jpg</image> <image>loading09.jpg</image> <image>loading10.jpg</image> </loading> <ping>asia.ragnarokdeep.com</ping> <pingport>5121</pingport> </connection> <connection> <display>MOTR</display> <address>89.108.109.26</address> <port>16900</port> <version>29</version> <langtype>0</langtype> <website>http://motr-online.com</website> <registrationweb>http://motr-online.com/mregister.php</registrationweb> <desc>For Russian players</desc> <type>MOTR</type> <packetver>20120712</packetver> <nationality>ru</nationality> <res>roworkshop.com</res> <res-port>4121</res-port> <res-subdir>motr-130208</res-subdir> <grf>motr.grf</grf> <grf>data.grf</grf> <patchserver> <http>http://tourney.motr-online.com/npatch2/patch.txt</http> <ftp>ftp://ropatch2.gravityus.com/patch</ftp> <grf>data.grf</grf> <inf>patch.inf</inf> </patchserver> <patchserver> <http>http://tourney.motr-online.com/npatch2/patchm.txt</http> <ftp>ftp://ptch3.motr-online.com</ftp> <grf>motr.grf</grf> <inf>mpatch.inf</inf> </patchserver> <iteminfo>m_item</iteminfo> <luafiles514>true</luafiles514> <eathena>true</eathena> <loading> <image>loading00.jpg</image> <image>loading01.jpg</image> <image>loading02.jpg</image> <image>loading03.jpg</image> <image>loading04.jpg</image> <image>loading05.jpg</image> <image>loading06.jpg</image> <image>loading07.jpg</image> <image>loading08.jpg</image> <image>loading09.jpg</image> <image>loading10.jpg</image> <image>loading11.jpg</image> <image>loading12.jpg</image> <image>loading13.jpg</image> <image>loading14.jpg</image> <image>loading15.jpg</image> <image>loading16.jpg</image> <image>loading17.jpg</image> <image>loading18.jpg</image> <image>loading19.jpg</image> <image>loading20.jpg</image> <image>loading21.jpg</image> <image>loading22.jpg</image> <image>loading23.jpg</image> <image>loading24.jpg</image> <image>loading25.jpg</image> <image>loading26.jpg</image> <image>loading27.jpg</image> <image>loading28.jpg</image> </loading> </connection> <connection> <display>iRO Chaos</display> <address>128.241.92.162</address> <port>6800</port> <version>18</version> <langtype>1</langtype> <desc>For US players (official)</desc> <registrationweb>https://www.warpportal.com/account/registration.aspx</registrationweb> <type>iRO_Renewal</type> <website>http://playragnarok.com</website> <clientver2>1</clientver2> <nationality>us</nationality> <res>roworkshop.com</res> <res-port>4121</res-port> <res-subdir>iro-130202</res-subdir> <grf>data.grf</grf> <patchserver> <http>http://ropatch1.gravityus.com/patch02/patch2.txt</http> <ftp>ftp://ropatch2.gravityus.com/patch</ftp> <grf>data.grf</grf> <inf>patch.inf</inf> </patchserver> <luafiles514>false</luafiles514> <eathena>false</eathena> </connection> <connection> <display>fRO</display> <address>62.23.1.52</address> <port>6900</port> <version>1</version> <type>fRO</type> <website>http://www.ragnarokeurope.com</website> <registrationweb>http://www.gravity-gateway.com/mon_compte.html?next=vos_comptes_de_jeux.html</registrationweb> <clientver2>14</clientver2> <nationality>gb</nationality> <patchserver> <http>http://web.ragnarokonline.fr/patch01/patch2.txt</http> <ftp>ftp://62.23.1.11/patch01</ftp> <grf>data.grf</grf> <inf>patch.inf</inf> </patchserver> <eathena>false</eathena> </connection> <connection> <display>Altair</display> <balloon>Test server</balloon> <desc>:3</desc> <address>89.108.109.26</address> <port>16910</port> <version>29</version> <langtype>0</langtype> <website>http://motr-online.com</website> <registrationweb>http://motr-online.com/mregister.php</registrationweb> <desc>For Russian players</desc> <type>MOTR</type> <packetver>20120712</packetver> <nationality>ru</nationality> <res>roworkshop.com</res> <res-port>4121</res-port> <res-subdir>motr-130208</res-subdir> <grf>motr.grf</grf> <grf>data.grf</grf> <patchserver> <http>http://tourney.motr-online.com/npatch_a/patch.txt</http> <ftp>ftp://ropatch2.gravityus.com/patch</ftp> <grf>data.grf</grf> <inf>patch.inf</inf> </patchserver> <patchserver> <http>http://tourney.motr-online.com/npatch_a/patchm.txt</http> <ftp>ftp://ptch3.motr-online.com</ftp> <grf>motr.grf</grf> <inf>mpatch.inf</inf> </patchserver> <iteminfo>m_item</iteminfo> <luafiles514>true</luafiles514> <eathena>true</eathena> </connection> <connection> <display>Local - 10.0.2.2</display> <address>10.0.2.2</address> <port>6900</port> <version>29</version> <type>MOTR</type> <support_stop_packet>true</support_stop_packet> <packetver>20120716</packetver> <res>10.0.2.2</res> <res-port>4121</res-port> <res-subdir>deep-130303</res-subdir> <grf>data.grf</grf> <luafiles514>true</luafiles514> <eathena>true</eathena> <iteminfo>deepitem</iteminfo> <support_stop_packet>true</support_stop_packet> </connection> <connection> <display>Local - 192.168.1.40</display> <address>192.168.1.40</address> <port>6900</port> <version>29</version> <langtype>0</langtype> <registrationweb>http://ragnarokdeep.com/mreg</registrationweb> <website>http://ragnarokdeep.com</website> <type>Deep</type> <packetver>20120712</packetver> <nationality>gb</nationality> <res>roworkshop.com</res> <res-port>4121</res-port> <res-subdir>deep-130303</res-subdir> <grf>deep.grf</grf> <grf>deep_pal.grf</grf> <grf>data.grf</grf> <patchserver> <http>http://ragnarokdeep.com/res/pl/patch.txt</http> <ftp>ftp://ftp.ragnarokdeep.com/patchk</ftp> <grf>data.grf</grf> <inf>Patch.inf</inf> </patchserver> <patchserver> <http>http://ragnarokdeep.com/res/pl/patchd.txt</http> <ftp>ftp://ftp.ragnarokdeep.com/patchd</ftp> <grf>deep.grf</grf> <inf>dpatch.inf</inf> </patchserver> <iteminfo>deepitem</iteminfo> <luafiles514>true</luafiles514> <eathena>true</eathena> <support_stop_packet>true</support_stop_packet> <support_billing>true</support_billing> </connection> <connection> <display>iRO Sakray</display> <address>128.241.92.162</address> <port>6900</port> <version>18</version> <langtype>1</langtype> <clientver2>14</clientver2> <type>iRO_Renewal</type> <res>roworkshop.com</res> <res-port>4121</res-port> <res-subdir>iro-130202</res-subdir> <grf>data.grf</grf> <patchserver> <http>http://128.241.93.38/patch02/patch2.txt</http> <ftp>ftp://ropatch2.gravityus.com/patch</ftp> <grf>data.grf</grf> <inf>patch.inf</inf> </patchserver> <luafiles514>false</luafiles514> <eathena>false</eathena> </connection> <connection> <display>kRO Sakray</display> <patchserver> <http>http://webpatch.ragnarok.co.kr/patch/patchRE.txt</http> <!-- <ftp>ftp://121.78.77.69:20021/Patch</ftp> --> <ftp>ftp://ragnarok.nowcdn.co.kr:20021/Patch</ftp> </patchserver> </connection> </clientinfo> Where should i Edit here??
  18. im asking about the WordEvent Script not WorldBoss event.. do u know how to fix this
  19. function script AddPoints { set .@accountID, getarg(0); set .@amount, getarg(1); //set #ACHIEVEPOINTS, #ACHIEVEPOINTS + .@amount; getitem $shardIds[0], .@amount; message rid2name(.@accountID), "You just won " + .@amount + " Shard" + (.@amount > 1 ? "s" : "") + " !"; return; } where i need to change. sir
  20. why i still have error after i add this 2 scripts. https://github.com/Nyliar/RagnarokContent/blob/master/Events/WordEvent.txt https://github.com/Nyliar/RagnarokContent/blob/master/Utilities/MainFunctions.txt
×
×
  • Create New...