Jump to content

ocelote

Members
  • Posts

    52
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by ocelote

  1. update your lua files? but how to do that? find and upload new data folder
  2. I don't sure, but maybe you need find the Mammonite skill in skill.c and add check for equipped this item. and then reduce zeny ? skill.c line 15411 on my rA maybe someone know other way to change it.
  3. OnPCKillEvent: if(strcharinfo(3) != "yourmap") end; #CASHPOINTS += 1; end;
  4. - script weaponmastcmdc -1,{ OnInit: bindatcmd "train",strnpcinfo(0)+"::OnTrainweap"; end; OnTrainweap: if (countitem(30722) < 1) { dispbottom "Sorry, but you need a TRAINING PASS to enter the training room."; dispbottom "You can purchase it from the TCG exchanger NPC."; end; } warp "pvp_y_1-1",0,0; dispbottom "[ Weapon Training Guard ]"; dispbottom "Welcome back."; end; }
  5. Only for rAthena. i don't know anything about PHP. i create this just for test. use this php script on your own risk. customize it as you want. PvP rating with League of Legends announce, sound and division system. Sound <= download PHP rating preview <= preview English rAthena script <= download ask if you have questions. maybe i will update php script with images and etc. pvp.7z
  6. It was a bug reported in #308 and was fixed in 2fdcd92. ©
  7. You can't use @ variable in OnInit event. Cuz it's 'temporary character integer variable' You need this: niflheim,304,71,6 script Woe Coin Trader 956,{ mes "[Woe Coin]"; mes "test 350"; next; switch(select("Yes:No")) { case 1: mes "[ Woe Coin ]"; query_sql("UPDATE `char` SET `base_level` = '"+.lvl+"' WHERE `char_id` = '"+getcharid(0)+"'"); close; case 2: mes "[ Woe Coin ]"; mes "Come back any time."; close; } OnInit: set .lvl, 349; end; } But why you don't use set BaseLevel, BaseLevel + .level; ??
  8. 1) mysql table `guild` 2) db/re-(pre-re)/item_trade.txt
  9. ACMD_FUNC(mall){ nullpo_retr(-1,sd); if( sd->npc_id || sd->vender_id || sd->buyer_id || sd->state.trading || sd->state.storage_flag ) return -1; npc_event(sd,"Mall::OnWarp",0); return 0; }
  10. nope. also you can remove the ">" and spaces. maybe this help you I forgot to add this : .TradeCount[@buy] -= .hw; - after getitem function. For deleting card count after buying.
  11. prontera,150,150,6 script Test 100,{ switch( select( ( getgmlevel() > 98 )?"^FF0000GM Menu^000000":"", "Player Menu")){ case 1: for(set .@a,0; .@a < getarraysize(.TradeID); set .@a, .@a +1){ if(.TradeID[.@a] != 0) { set .@menu$, .@menu$ + "> ^0000FF "+getitemname(.TradeID[.@a])+" ^000000 x"+.TradeCount[.@a]+" x"+.TradeTCG[.@a]+""; set .@menu$, .@menu$ + ":"; } } set @Edit,select(.@menu$)-1; mes "How much cards add?"; input .addhw; mes "done."; .TradeCount[@Edit] += .addhw; close; case 2: for(set .@i,0; .@i < getarraysize(.TradeID); set .@i, .@i +1){ if(.TradeID[.@i] != 0) { set .@menu$, .@menu$ + "> ^0000FF "+getitemname(.TradeID[.@i])+" ^000000 x"+.TradeCount[.@i]+" x"+.TradeTCG[.@i]+""; set .@menu$, .@menu$ + ":"; } } set @Buy,select(.@menu$)-1; mes "how much?"; input .hw; if(.TradeCount[@Buy] < .hw) { mes "I do not have as many cards"; close; } if(countitem(.TCGID) < .TradeTCG[@Buy]*.hw){ mes "You don't have TCG."; close; } delitem .TCGID, .TradeTCG[@Buy]*.hw; getitem .TradeID[@Buy], .hw; mes "complete!"; close; } OnInit: setarray .TradeID[0], 4031; //your cards id setarray .TradeCount[0], 1; //card count setarray .TradeTCG[0], 2; //card cost in tcg set .TCGID, 12345; //your tcg id end; } Not tested.
  12. What you don't understand? It's a piece of code for change your lotto balls to cash points.o.O .@i = countitem(lottoballsID); //change 'lottoballsID' to your ID (this command checks how much Lotto Balls have player if(.@i > 0){ //If lotto ball more than zero delitem lottoballid, .@i; //deleting lotto balls #CASHPOINTS += .@i; // cash points + lotto balls count (1lottoball = 1 cash) mes "changed "+getitemname(lottoballid)+" x "+.@i+" to "+.@i+" cash points!"; close; } mes "you don't have lotto balls!"; close;
  13. Hello! I want to show you my Present System. (free version) Its contain: Admin Menu with code generation Check your code Use your code Multilanguage (RU and ENG. also you can add your language. Just goto script folder/lang/ and create .txt file with your language. then goto MainFunctions.txt and set variable .Lang$ to your language. example: .Lang$ = "EN"; for English.) All codes are attached to the character. little explanation: We have a sql table that contains the following fields: code - its your code nameid - Character name is attached to the code itemid - item id amount - amount of items classid - class id to change (4064 - Mechanic and etc) stpoint - amount of status point skpoint - amount of skill point blvl - amount of base level jlvl - amount of job level cash - amount of cash points zeny - amount of zeny You can also add to code all of this points, or just Base Level and etc. NPC generates a menu depending on whether there is in this field some value or not. If field 'cash' value is more than zero. NPC will generate menu with "Cash Points + [value]" If fields 'zeny','cash','blvl' value is more than zero. NPC will generate menu with "Zeny + [value]","Cash Points + [value]","Base Level + [value]" and etc. If you have some questions just ask me. Or read 'readme.txt' in script folder! Preview full functions (not free) : https://www.youtube.com/watch?v=LJbf3wvA7Mc Sorry for my english. Present_System.7z
  14. .@i = countitem(lottoballsID); if(.@i > 0){ delitem lottoballid, .@i; #CASHPOINTS += .@i; mes "changed "+getitemname(lottoballid)+" x "+.@i+" to "+.@i+" cash points!"; close; } mes "you don't have lotto balls!"; close; this? for red lotto bal just add some like this: .@a = countitem(redlottoballid); if(.@a > 0){ delitem redlottoballid, .@a; #CASHPOINTS += .@a*3; mes "changed "+getitemname(lottoballid)+" x "+.@i+" to "+.@i*3+" cash points!"; close; } mes "you dont have lotto balls!"; close;
  15. Hello! It's not working :< Full screen: I'll try to teleport one player. But it's still don't work...
  16. Hello community! I have some problem with instance_enter function. Piece of code: instance_enter("Dragon Nest"); close2; warpparty "1@uns",56,263,.PartyID; My instance_db: 13,Dragon Nest,1200,1@uns,56,263,1@uns So. My problem: Player, who warped with instance_enter can't see other players on 1@uns map. All because of : when i click alt+z i see - My name (Alberta Ship) But visually this map looks like 1@uns. And when i do /where i see (Unknown Map) 1@uns 50, 50. Thanks. Sorry for my English.
  17. switch(getequiprefinerycnt(.@part)) { case 9: announce strcharinfo(0) + " refine hes/her item for +9",bc_all; break; case 10: announce strcharinfo(0) + " refine hes/her item for +10",bc_all; break; } i think some like this. i didn't test. put it after. successrefitem .@part;
  18. ocelote

    GM Logs?

    ra/log/atcommandlog.txt
  19. http://ea-support.ru/index.php?/topic/14-svn-exe/ - svn exe by Shader http://svn.rathena.org/svn/rathena/ - svn rAthena
  20. Emperium arena 20sec - 1 TCG Card sorry for my English thx for Agasper SRC: goto ea/src/map/battle.c find int battle_check_target( struct block_list *src, struct block_list *target,int flag) turn below and find case BL_MOB: а там уже { struct mob_data *md = BL_CAST(BL_MOB, t_bl); after add : struct map_session_data *sd; sd = BL_CAST(BL_PC, s_bl); if(t_bl->type==BL_MOB && ((TBL_MOB*)target)->class_== 1288 && pc_readregistry((TBL_PC*)s_bl,"emp_own",3)==1) return 0; in 1 line down we will see: if( !((agit_flag || agit2_flag) && map[m].flag.gvg_castle) && md->guardian_data && md->guardian_data->guild_id ) change it for this: if( !((agit_flag || agit2_flag || map[m].flag.gvg ) && map[m].flag.gvg_castle) && md->guardian_data && md->guardian_data->guild_id ) turn below and find case BL_MOB: Again, too,are doingwhat is writtenabove. DB : goto ea/db/castle_db.txt and add 34,prt_fild08,Pront,OnBreak,1 // Crystal RO : Pront NPC : // = Emperium // = for Crystal RO // = by Ocelote - script EmpInitOo -1,{ OnInit: donpcevent "EmpSpawnIn::OnSpawn"; end; } - script EmpSpawnIn -1,{ OnSpawn: killmonsterall "prt_fild08"; set $OwneR$, "Emperium"; announce "[Emperium] : Emperium arena in prt_fild08!",bc_all; // = spawn : monster "prt_fild08",169,348,"Crystal emp: ["+$OwneR$+"]",1288,1,"BreakEmperium::OnBreak"; end; } prt_fild08,0,0,0 script BreakEmperium -1,{ OnBreak: set $OwneR$,strcharinfo(0); set emp_own,1; monster "prt_fild08",169,348,"Crystal emp: ["+$OwneR$+"]",1288,1,"BreakEmperium::OnBreak"; announce "[Emperium] : ["+$OwneR$+"] own location [prt_fild08]",bc_all; initnpctimer; end; OnTimer20000: if($OwneR$ == "") { donpcevent "EmpSpawnIn::OnSpawn"; end; } if(!getcharid(0,$OwneR$)) { set emp_own,0; stopnpctimer; donpcevent "EmpSpawnIn::OnSpawn"; } else { attachrid(getcharid(3,$OwneR$)); getmapxy $emperium$,.@x,.@y,0; if($emperium$ == "prt_fild08") { getitem 7227,1; initnpctimer; end; } } OnInit: } - script EmperiumBreakerOo -1,{ OnPCLogoutEvent: if(strcharinfo(0) == $OwneR$) { set emp_own,0; announce "[Emperium] : "+strcharinfo(0)+" logout game, Emperium spawn again!",bc_all; donpcevent "EmpSpawnIn::OnSpawn"; stopnpctimer; end; } end; } - script EmperiumDieOo -1,{ OnPCDieEvent: if(emp_own > 0) set emp_own,0; end; } prt_fild08 mapflag gvg_castle prt_fild08 mapflag gvg empbreak.txt
  21. setarray @mobids,1038,1039,1046,1150,1511,1647,1785,1630,1874,1272,1719,1389,1112,1115,1418,1871,1252,1768,1086,1990,1649,1651,1832,1492,1734,1779,1251,1688,1646,1373,1147,1059,1150,1087,1190,1157,1159,1623,1650,1708,1583,1991,1312,1751,1685,1658,1648,1917,1885; all MvP id
  22. Простите конечно, но меня попросили написать это.
  23. Вообщем, принялся делать свой эмулятор, на основе eAthen'ы... Проблема такая, были почищены все .conf файлы... В scripts_main.conf добавлены такие строчки: // ============================================================== // = scrAthena Primary Scripts File = // ============================================================== import: npc/scripts_kafras.conf import: npc/scripts_main.conf import: npc/scripts_other.conf import: npc/scripts_warps.conf import: npc/scripts_monsters.conf import: npc/scripts_jobs.conf import: npc/scripts_guild.conf import: npc/scripts_mapflags.conf import: npc/scripts_athena.conf НПЦ добавлены(на данный момент Кафры во всех городах, Хилер во всех городах, и варпы во всех городах...) При загрузке сервера, пишет, что ничего нету...0 NPC'S loaded и т.д... Что за бред, кто объяснит? В файлах всё прописано. К примеру npc/scripts_kafras.conf: //===================================== //= srcAthena KAFRAS conf file. [Oxxy] //= Add new KAFRAS like this: [Oxxy] //= npc: npc/support/kafras/TOWN/NEWKAFRA.txt [Oxxy] //===================================== //= KAFRA FUNCTIONS //===================================== npc: npc/support/kafras/kaf_functions.txt // DON'T DELETE THIS. //===================================== //= PRONTERA KAFRAS //===================================== npc: npc/support/kafras/prontera/prt_kafra1.txt npc: npc/support/kafras/prontera/prt_kafra2.txt npc: npc/support/kafras/prontera/prt_kafra3.txt npc: npc/support/kafras/prontera/prt_kafra4.txt npc: npc/support/kafras/prontera/prt_kafra5.txt npc: npc/support/kafras/prontera/prt_kafra6.txt //===================================== //= ALBERTA KAFRAS //===================================== npc: npc/support/kafras/alberta/alb_kafra1.txt npc: npc/support/kafras/alberta/alb_kafra2.txt //===================================== //= ALDEBARAN KAFRAS //===================================== npc: npc/support/kafras/aldebaran/ald_kafra1.txt npc: npc/support/kafras/aldebaran/ald_kafra2.txt //===================================== //= COMODO KAFRAS //===================================== npc: npc/support/kafras/comodo/com_kafra1.txt npc: npc/support/kafras/comodo/com_kafra2.txt //===================================== //= DUNGEON KAFRAS //===================================== npc: npc/support/kafras/dungeons/dun_kafra1.txt npc: npc/support/kafras/dungeons/dun_kafra2.txt npc: npc/support/kafras/dungeons/dun_kafra3.txt npc: npc/support/kafras/dungeons/dun_kafra4.txt npc: npc/support/kafras/dungeons/dun_kafra5.txt npc: npc/support/kafras/dungeons/dun_kafra6.txt //===================================== //= GEFFEN KAFRAS //===================================== npc: npc/support/kafras/geffen/gef_kafra1.txt npc: npc/support/kafras/geffen/gef_kafra2.txt //===================================== //= IZLUDE KAFRAS //===================================== npc: npc/support/kafras/izlude/izlude_kafra1.txt //===================================== //= MOROCC KAFRAS //===================================== npc: npc/support/kafras/morroc/mor_kafra1.txt npc: npc/support/kafras/morroc/mor_kafra2.txt //===================================== //= PAYON KAFRAS //===================================== npc: npc/support/kafras/payon/pay_kafra1.txt npc: npc/support/kafras/payon/pay_kafra2.txt npc: npc/support/kafras/payon/pay_kafra3.txt
×
×
  • Create New...