Jump to content

Mootie

Members
  • Posts

    815
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Mootie

  1. and i hope this will end of discussion about acsii and unicode cheers
  2. so you still having the same error dont you? yes you have to remove all .lua on your luafiles514/lua files cause 2012 clients reads .lub you really need to compile them and put it on your grf
  3. here's whats on my mind between acsii and unicode..... acsii goes for translated objects,files ETC textrue > unicode goes for original objects,files ETC texture > but yeah since our grf reads translated just correct me if im wrong..
  4. yes you need the same date of your packet_db for you client and 2012+ clients read .lub files instead lua files so get a latest compiler for it.
  5. if your vps is windows you can use normal ways to install rathena in your vps and if you are using centos follow that guide
  6. no you cant edit lub files cause their already in compiled...to impossible to read or to edit them....unless you do what emistry says... on post #2
  7. at qng mag babalak kang lumipat sa rathena dpat clean lahat para no error kse qng eathena to rathena ka magging complicated dapat alam mo qng panu sila ayusin
  8. to configure this skill delays....go to your ragnarok server files > conf > battle > skill.c and config it to your needs
  9. yes for the 2012 latest lua for 2010 use 5.0.2
  10. - script Ref_config -1,{ OnInit: set $@daystoplay, 2; // total no of days to play. set $@noofplayers, 2; // min. no. of players to call to server to be eligible to get the price. set $@hourstoplay, 5; // No. of hours to play everyday. set $@noofoctet, 3; // No. of octects, that script will check. set $@new_aid, 2000000; // To be sure that the player is really new to server. Put the latest registered account id here. set $@name$,"^E41B17[Call Your Friend]^000000"; // Edit npc name here. end; } if i edit set $@hourstoplay, 5; // No. of hours to play everyday. to which means it will be 5days instead 5hours? or should iedit this one set $@daystoplay, 2; // total no of days to play. im bit confuse on this two codes set $@hourstoplay, 5; // No. of hours to play everyday. set $@daystoplay, 2; // total no of days to play. which code should edit for 5days instead 5hours and also wondering to check if its a dual clients or same ip to avoid abuse for this referal npc. thanks for the helps.
  11. follow my guides or others guides for custom item
  12. yeah figure it out lol i messed up with this....
  13. hi guys i like to ask how i can make this script to identify the player if its male or female. zhakastia,85,57,6 script Freebies Giver 790,{ if( !Freebies ){ set Freebies,1; mes "Welcome...this is your gift..."; getitem 31111,1; getitem 31112,1; getitem 31113,1; getitem 31114,1; }else{ mes "You have claim the Reward already this."; } close; OnInit: waitingroom "Get your freebies here!!!",0; end; } should i use this if( !#Claimed ){ if( Sex ){ dispbottom "BOY"; getitem 607,1; }else{ dispbottom "Girl"; getitem 608,1; } set #Claimed,1; } and put anywhere in the script?
  14. post the whole script please nvmnd here i already tested in my test server works fine to me no errors.. turbo_room,76,100,3 shop Genetic Shop 777,6210:30000,6211:30000,6212:30000,6213:30000,6214:30000,6215:30000,6216:30000,6217:30000,6244:30000,6245:30000,6246:50000,6247:50000,6248:50000,624 9:50000,6250:50000,6251:50000,6252:50000,6253:50000,6254:50000,6255:50000,6256:50000,6257:50000,6258:50000,6259:50000,6260:50000,6261:50000,6262:50000 ,6263:50000,6264:50000,6265:50000,6279:100000,6280:100000,6281:100000,6282:100000,6283:100000,6284:100000,6285:100000,6297:20000,11022:100000,11023:10 0000,11024:100000,12417:3000012418:30000,12419:30000,12420:30000,12421:30000,12422:30000,12423:30000,12424:30000,12425:30000,12426:30000,12427:30000,1 2428:30000,12429:30000,12430:30000,12431:30000,12432:30000,12433:30000,12434:30000,12435:30000,12436:30000,12437:30000,12475:30000,13260,35000,13261,3 5000,13262,35000,13263,35000,13264,35000,13265,35000,13266,35000,13267,35000,13268,35000 if you still having a NPC_Parse_shop: Invalid Item definition check your items that putted on.Maybe your items are not belong or not in the item_db2 or item_db
  15. Mootie

    FluxCP Themes

    get premade sales
  16. You need to create your own map your own script.
  17. follow this http://rathena.org/board/topic/74036-adding-custom-guide-wscreen-shots/ remember 2012 client read lub files and get latest luadec for compiling
  18. your like vice versa of mine o.o lol
  19. because the cp_ files on it has been deleted or been replace for the empty cp_ all you have to do is to get your old database that has cp_createlog the cp_createlog means this is the logs for registered within the flux control panel so if this is empty even your database have login it wont match up so all you have to do is to get your backup for cp_createlog if you dont have some too bad for you.
  20. use my edited automated mvp summoner - script Sample -1,{ OnInit: setarray .Map$[0],"prontera","payon","izlude","lighthalzen","louyang","comodo","xmas","aldebaran","geffen","morocc"; setarray .MVP[0],1658,1648,1751,1312,1511,1647,1785,1630,1399,1874,2068,1272,1719,1046,1389,1112,1115,1418,1871,1252,1768,1086,1885,1649,1651,1832,1734,1779,1688,1646,1623,1650,1583,1708,1685,1648,1658; end; OnMinute00: killmonster .Map$[ .RandMap ],"All"; set .RandMap,rand( getarraysize( .Map$ ) ); set .RandMVP,rand( getarraysize( .MVP ) ); monster .Map$[ .RandMap ],0,0,"MVP Event",.MVP[ .RandMVP ],1,strnpcinfo(0)+"::OnKilled"; announce "MVP Event : "+getmonsterinfo( .MVP[ .RandMVP ],0 )+" occur in "+.Map$[ .RandMap ]+" .",0; end; OnKilled: announce "MVP Event : End...MVP Died",0; end; } if you want to summon this mvp summoner for 1 map edit this line setarray .Map$[0],"pvp_n_1-2";
  21. Mootie

    Flux CP Error

    go to config look for index.php look for this line showExceptions = false; // Whether or not to show exceptions (only applies to error.php) change false to true so you can exactly see your error regarding to that.
  22. you have to set your main>index.php to view news if you are using calcium kid adds-on go to theme default>main>index.php and put ths <?php if (!defined('FLUX_ROOT')) exit; $this->redirect($this->url('news','view')) ?>
  23. try to search engine there is tons of guides for this
  24. oh okay i hope it works
  25. are you using load lua before lub? 2012+ client read lub files. and back to the topic uhm,ragray should be work as well but you should try miruku atleast and if still not working im willing to help you via team viewer. last thing is your server running in? own computer? or hosting?
×
×
  • Create New...