-
Posts
68 -
Joined
-
Last visited
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Crowdfunding
Everything posted by buraquera
-
Make this script have more winners before closing.
buraquera replied to Noire's question in Scripting Support
add something like this after the last dialog if (.5times >=5){ clear; mes "Sorry someone already has won"; close; } -
Make this script have more winners before closing.
buraquera replied to Noire's question in Scripting Support
sorry, there is no need for "set", use: .5times++; if (.5times >=5) disablenpc(); and line 144, not 143. After "set winRPS" xD -
Make this script have more winners before closing.
buraquera replied to Noire's question in Scripting Support
add this to line 143 set .5times++; if (.5times >=5) disablenpc(); -
Transfering Party Leader on Death / Sharing Zeny with Party Members
buraquera replied to Eross's question in Scripting Support
try this - script mh_ghall -1,{ OnPCDieEvent: // if !(INSTANCE X IS RUNNING) #todo // end; @die_count++; if (@die_count >= 3) { // Clean player .@party_id = getcharid(1); party_delmember(getcharid(0)) warp "prontera",50,50; @die_count = 0; // Check if party leader if (!is_party_leader(.@party_id)) end; // Set party var getpartymember .@party_id, 1; copyarray .@ptmembercid,$@partymembercid,$@partymembercount; // Remove offline members for (.@i = 0 ; .@i < $@partymembercount; .@i++){ if (!isloggedin(.@ptmembercid[.@i])) deletearray .@partymembercid[.@i],1; } party_changeleader(.@party_id,convertpcinfo(.@partymembercid[rand(getarraysize(.@partymembercid))],CPC_CHAR)); end; } end; } OnPCLogoutEvent: instance_destroy(instance_id(IM_PARTY)); set @instance_name$, ""; instance_active = 0; } prontera,50,50,0 script InstanceCreate -1,{ .price = 10000; getpartymember getcharid(0),1; .@individual_price = .price/$@partymembercount; for (.@i = 0 ; .@i < $@partymembercount; .@i++){ if (readparam(Zeny,convertpcinfo($@partymembercid[.@i],CPC_CHAR)) > .@individual_price) .@c++; } if (.@c == $@partymembercount) // Start Event here } -
prontera,150,150,4 script NpcJobChange 82,{ mes "Hi, wich class? " job[0] = select("Swordman:Magician:Archer:Acolyte:Merchant:Thief:Super Novice"); if (job[0] == 7) job[0] = 23; // Suno close; OnPCBaseLvUpEvent: if (!Class && job[0] == 23 && BaseLevel >= 45) // If Suno jobchange job[0]; end; OnPCJobLvUpEvent: if (job[0] == 23) end; // suno doesnt apply if (!Class && JobLevel >= 10) jobchange job[0]; end; } Test this prototype and u can improve it for more classes
-
Strict 1 IP per person inside goldroom
buraquera replied to agamanaros's question in Script Requests
skycity,117,217,6 script Piso Dungeon 540,{ mes "[Piso Dungeon]"; mes "Do you want to enter my Piso Dungeon?"; menu "Ok",-,"No thanks.",L_No; ////////////////////////////// IP CHECK .@ip$ = getcharip(); getmapunits(BL_PC,"ba_lib",.@name$); for(.@i=0; .@i < getarraysize(.@name$); .@i++){ if(getcharip(.@name$[.@i]) == .@ip$){ mes "[Piso Dungeon]","Double IP detected"; close; } } ///////////////////////////// IP CHECK mes "Awesome!"; next; mes "I wish you all the luck! Happy Hunting!"; atcommand "@alootid reset"; atcommand "@alootid +35405"; atcommand "@autostore 15"; warp "ba_lib",0,0; close; L_No: close; OnInit: waitingroom " Piso Dungeon",0; end; } Add the lines between "////////////////// CHECK IP" -
Try this...: prontera,155,181,5 script Gift NPC 4_M_2NDPRIN2,{ set .Hour,24; if (inarray($richestplayer,getcharid(1)) == -1) end; if( #dailytimer < gettimetick(2) ) { mes "You have Gained a Daily Gift."; #dailytimer = gettimetick(2) + ( .Hour * 3600 ); getitem 6101,1; //set the price here } else{ .@last = #dailytimer - gettimetick(2); .@hour = .@last % ( 24 * 3600 ) / 3600; .@min = .@last % ( 24 * 3600 ) % 3600 / 60; .@sec = .@last % ( 24 * 3600 ) % 3600 % 60; mes "You have to wait to get your next Daily Gift."; mes "Time CountDown : ^FF0000"+.@hour+":"+.@min+":"+.@sec+"^000000"; } close; OnInit: initnpctimer; end; OnHour00: // Refresh Richest tables every day // note this can get 1 or more if they have same amount of zeny deletearray $richestplayer; query_sql("SELECT `char_id` FROM `char` WHERE `zeny` = (SELECT MAX(`zeny`) FROM `char`",$richestplayer); end; } Notes that i didnt do anything about PVP coz it depends on your pvp ladder system. The zeny winner can only be acessible via SQL. Its not a good ideia to query sql many times so i made a "daily richest" instead. Note also that it can be 1 or more richest as they can have the same zeny amount
-
Help! Script for broadcast WoE countdown for 1 Hour WoE
buraquera replied to luisangelops's question in Script Requests
The script seems to be ok. It should work if u change .timer 60. U said its not working, whats happening? -
Release: Battleground Extended 2020 ! With Bomberman/Poring Ball
buraquera replied to grenat50's topic in Source Releases
Thanks for update, It diff and compile perfectly But when i first try play "double inferno" this error showsup -
Release: Battleground Extended 2020 ! With Bomberman/Poring Ball
buraquera replied to grenat50's topic in Source Releases
-
creating a simple character info display npc
buraquera replied to f_fman's question in Scripting Support
I recommend u check doc/script_commands.txt and read it full Anyway, u wont need to query. See: Some variables are special, that is, they are already defined for you by the scripting engine. You can see the full list in 'src/map/script_constants.hpp', which is a file you should read, since it also allows you to replace lots of numbered arguments for many commands with easier to read text. The special variables most commonly used are all permanent character-based variables: Zeny - Amount of Zeny. Hp - Current amount of hit points. MaxHp - Maximum amount of hit points. Sp - Current spell points. MaxSp - Maximum amount of spell points. StatusPoint - Amount of status points remaining. SkillPoint - Amount of skill points remaining. BaseLevel - Character's base level. JobLevel - Character's job level. BaseExp - Amount of base experience points. JobExp - Amount of job experience points. NextBaseExp - Amount of base experience points needed to reach the next level. NextJobExp - Amount of job experience points needed to reach the next level. Weight - Amount of weight the character currently carries. MaxWeight - Maximum weight the character can carry. Sex - 0 if female, 1 if male. Class - Character's job. Upper - 0 if the character is a normal class, 1 if advanced, 2 if baby. BaseClass - The character's 1-1 'normal' job, regardless of Upper value. For example, this will return Job_Acolyte for Acolyte, Priest/Monk, High Priest/Champion, and Arch Bishop/Sura. If the character has not reached a 1-1 class, it will return Job_Novice. BaseJob - The character's 'normal' job, regardless of Upper value. For example, this will return Job_Acolyte for Acolyte, Baby Acolyte, and High Acolyte. Karma - The character's karma. Karma system is not fully functional, but this doesn't mean this doesn't work at all. Not tested. Manner - The character's manner rating. Becomes negative if the player utters words forbidden through the use of 'manner.txt' client-side file. -
There same ways of doing this. try this - script asdahjhla -1,{ OnPCKillEvent: if (countinarray(.map$,strcharinfo(3)) && $pkscore[getcharid(0)] < 21 && rand(100) <= .chance && killedrid != getcharid(3)){ getitem 7960, 1; $pkscore[getcharid(0)]++; } end; OnInit: .chance = 100; // chance to get something setarray .map$, "pvp_y_1-2"; // map list end; OnHour00: deletearray($pkscore); end; }
-
R> If i spend cash points i will get another item
buraquera replied to lelouchxv's question in Script Requests
Not sure if you can check if player has finish shopping via script. If no, and also if in your game the cashpoints are non-transferable u can try having a new acc variable as #CASHPOINTS_CALC So whenever u give a player cashpoints u add on both variables. Later u can have a script wich compares both variables and return the result. Could be called on a npc "Cash Expent Reward" or on an event as "OnPcLoginEvent" etc... -
Add this on line ~40, before // Randomize each Option Slot: if (!countitem(6608)){ mes "Você não possui nenhuum " + getitemname(6608) + "."; close; } delitem(6608,1);
-
Specify what you want to limit ...?It may be a delay, or if the dead player is the same as last time ......
-
I dont think it would be easy and efficient via script. There is no command wich checks if player has been hit.
-
Try this ////////////////////////////////////////////////////////////////////////////////// // by AnnieRuru authored and MishimaHaruna // *** Function "F_ShuffleNumbers": // Generate a set of numbers in random order that the numbers are not repeated // --- callfunc "F_ShuffleNumbers",<start num>,<last num>,<output array>{,<count>}; // Examples: // callfunc("F_ShuffleNumbers", 0, 5, .@output) // possible output 4,1,3,2,0,5 // callfunc("F_ShuffleNumbers", -5, 1, .@output) // possible output -3,-5,-4,-2,-1,1,0 // callfunc("F_ShuffleNumbers", 0, 100, .@output, 5) // possible output 9,55,27,84,33 // Reminder: Use *freeloop command when appropriate ! ////////////////////////////////////////////////////////////////////////////////// function script F_ShuffleNumbers { deletearray getarg(2); .@static = getarg(0); .@range = getarg(1) +1 - .@static; .@count = getarg(3, .@range); if (.@range <= 0 || .@count <= 0) return 0; if (.@count > .@range) .@count = .@range; for (.@i = 0; .@i < .@range; ++.@i) .@temparray[.@i] = .@i; for (.@i = 0; .@i < .@count; ++.@i) { .@rand = rand(.@range); set getelementofarray( getarg(2), .@i ), .@temparray[.@rand] + .@static; .@temparray[.@rand] = .@temparray[--.@range]; } return .@count; } https://annieruru.blogspot.com/2019/01/shuffle-algorithm.html
-
Check party member if within the cell and in the map
buraquera replied to Mutate's question in Scripting Support
This script is not complete... Post it full.... Anyway, for what i can see it is already set this way u want if ( distance(.@x, .@y, @x, @y) > 15 || @map$ != .@map$ ) { I dunno where theses scope varibles came from but assuming its getmapxy from mvp killer, it means the party member shouuld be on 14 cells distance and also in the same map (obviously) -
this? function script MvPResetRank { for (.@c = 0; .@c < $@top; .@c++) { setd "$topmvp" +.@c,0; setd "$topmvp" +.@c +"$", ""; } return; } Note this will reset the rank but not the global player variable. U should clean it by an player attached script `MvP = 0` or via sql (wich i recommend having a custom table for that)
-
You npc wont run because uyou have problem in your prontera cordinates, also has an extra coma after npc position anyway, try this prontera,155,175,5 script VIP Box Agent 828,{ // Show 1st message mes .npc$,"I Can Change VIP Boxes to Zeny."; for (.@i = 0 ; .@i < getarraysize(.vipbox); .@i++) mes "1 x " + .vipbox_name$[.@i] + " = ^640000" + .reward[.@i] + "^000000."; // Choose option mes "So what do you want?"; .@s = select(implode(.vipbox_name$,":")) -1; // Confirm clear; mes .npc$,"Are you sure you want to exchange your " + .vipbox_name$[.@i] + " to Zeny?"; if (select("Nevermind...:Yes..!") < 2) close; // Choose amount clear; mes .npc$,"How many Credits do you want to exchange?"; input .@t; clear; // Check ammount if (.@t < 1){ mes .npc$,"Wrong number..."; close; } // Check inventory if(countitem(.vipbox_id[.@s]) < .@t){ mes .npc$,"You dont have it..."; close; } // Conclude mes .npc$,"Thanks. . See you again. . . !"; delitem .vipbox_id[.@s],.@t; Zeny += .reward[.@s]*.@t; close; // When npc is loaded OnInit: // Set npc variables .npc$ = "[^000088 Mr. Credit ^000000]"; setarray .vipbox_id,12985,12986,12984; setarray .reward,500000,1000000,2000000; // Get item names for (.@i = 0 ; .@i < getarraysize(.vipbox_id); .@i++) .vipbox_name$[.@i] = getitemname(.vipbox_id[.@i]); }
-
ive tested your script now Your problem is an unnecessary "space" here: - script vend_slot -1, { should be - script vend_slot -1,{
-
You are missing some left and right curly on these for above OnInit OnInit: sleep 1000; // Map for vending .map$ = strnpcinfo(4); setcell .map$, 0, 0, 300, 300, cell_novending, 1; // x and y horizone .. setarray .x_line, 52, 49, 46, 43, 40; setarray .y_line, 68, 71, 74, 77, 65, 62; set .x_line_size, getarraysize(.x_line); set .y_line_size, getarraysize(.y_line); set .count, 1; for (set .@x, 0; .@x < .x_line_size; set .@x, .@x + 1) <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< for (set .@y, 0; .@y < .y_line_size; set .@y, .@y + 1) <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< if (checkcell(.map$, .x_line[.@x], .y_line[.@y], cell_chkpass)) { movenpc "#vend_slot"+.count, .x_line[.@x], .y_line[.@y]; setcell .map$, .x_line[.@x], .y_line[.@y], .x_line[.@x], .y_line[.@y], cell_novending, 0; set .count, .count + 1; } npctalk "Vending Spot : "+.count; donpcevent "::OnSetup"; end; }
-
You file is unvailable... but if i understood what you want is something like prontera,150,150,4 script QuestTest 80,{ setarray .@quest,90000,90001,90002,90003; // here example of 4 different quests .@num_quests = getarraysize(.@quest); .@random_num = rand(1,.@num_quests); setquest .@quest[.@random_num-1]; end; }
-
Get the renewall script on db/re/item_db Open the db/pre/item_db then overide it using the script you got
-
Ive not tested but it may work (should be on item script) if (isequippedcnt(4600,46001,46002,46003.........))