Jump to content

Royr

Members
  • Posts

    90
  • Joined

  • Days Won

    1

Everything posted by Royr

  1. que_temsky,47,126,0 script ld01#Exit 45,1,1,{ end; OnTouch: warp "SavePoint",0,0; end; } Simple and plain.
  2. Alright! This is how i fixed the issue regarding not updating SQL. Make sure your using the "vote": Locate: addons\voteforpoints\config\addon.php 'PointsType' => "vote", // credit, vote, cash What i did was creating a new table, which is "cp_v4p_voters" SQL Table: (Execute this query) CREATE TABLE `cp_v4p_voters` ( `account_id` int(10) unsigned NOT NULL, `votepoints` int(10) unsigned NOT NULL, PRIMARY KEY (`account_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; First removed the existing one: case "vote": // update votepoints $sql = "UPDATE $server->loginDatabase.cp_createlog SET votepoints = votepoints + ? WHERE account_id = ?"; $sth = $server->connection->getStatement($sql); $sth->execute(array((int) $res->votepoints, $account_id)); break; And Insert this: (Locate) addons\voteforpoints\modules\voteforpoints\index.php case "vote": // update votepoints $sql = "UPDATE $server->loginDatabase.cp_v4p_voters SET votepoints = votepoints + ? WHERE account_id = ?"; $sth = $server->connection->getStatement($sql); $sth->execute(array((int) $res->votepoints, $account_id)); if ( ! $sth->rowCount()) { $sql = "INSERT INTO $server->loginDatabase.cp_v4p_voters VALUES (?, ?)"; $sth = $server->connection->getStatement($sql); $bind = array($account_id, $res->votepoints); $sth->execute($bind); if ( ! $sth->rowCount()) $errorMessage = sprintf(Flux::message("UnableToVote"), 3); } else { $sql = "UPDATE $server->loginDatabase.cp_v4p_voters SET `value` = `value` + ? WHERE `key` = ? AND account_id = ?"; $sth = $server->connection->getStatement($sql); $sth->execute(array((int) $res->votepoints, $account_id)); } break; PROOF it works .
  3. If you don't like your players to be dispelled simply remove the function . dispell_Function();
  4. You never mentioned that in your post. 1. Why would you need the MONK to be dispell in the first place? when "ENTERING THE PORTAL" they'll automatically be dispelled. They can't even use any skills after the 5 second(s). https://github.com/rathena/rathena/blob/master/doc/script_commands.txt#L6201 Everything explains here. setpcblock PCBLOCK_IMMUNE|PCBLOCK_ATTACK|PCBLOCK_SKILL|PCBLOCK_USEITEM, true; 2. ?
  5. Just give a try didn't test. // Credits: Stolao function script dispell_Function { while( .@STATUS < 297 ) { if( .@STATUS != SC_WEIGHT50 && .@STATUS != SC_WEIGHT90 && .@STATUS != SC_NOCHAT && .@STATUS != SC_XMAS && .@STATUS != SC_SUMMER && .@STATUS != SC_JAILED && .@STATUS != SC_STRFOOD && .@STATUS != SC_AGIFOOD && .@STATUS != SC_VITFOOD && .@STATUS != SC_INTFOOD && .@STATUS != SC_DEXFOOD && .@STATUS != SC_LUKFOOD && .@STATUS != SC_FLEEFOOD && .@STATUS != SC_BATKFOOD && .@STATUS != SC_WATKFOOD && .@STATUS != SC_MATKFOOD && .@STATUS != SC_SCRESIST && .@STATUS != SC_EXPBOOST && .@STATUS != SC_ITEMBOOST && .@STATUS != SC_BOSSMAPINFO && .@STATUS != SC_LIFEINSURANCE && .@STATUS != SC_JEXPBOOST ) sc_end .@STATUS; .@STATUS++; } return; } // Sample Script geffen, 119, 71, 0 script TestWarp#Sample 45,2,2,{ end; OnTouch: mes "[ Portal ]"; mes "^FF0000WARNING: Once you entered automatically dispelled.^000000"; close2; warp "geffen",119,78; sleep2 2; setpcblock PCBLOCK_IMMUNE|PCBLOCK_ATTACK|PCBLOCK_SKILL|PCBLOCK_USEITEM, true; dispbottom "DEBUG: TRUE"; dispell_Function(); addtimer 5000,strnpcinfo(0)+"::OnPass"; end; OnPass: dispbottom "DEBUG: FALSE"; setpcblock PCBLOCK_IMMUNE|PCBLOCK_ATTACK|PCBLOCK_SKILL|PCBLOCK_USEITEM, false; end; }
  6. [ Daily Tip ]: NEVER do any RO Hosting services Unreliable.
  7. This is how i cleaned my RO Client Files (for distribution). NOTE: Don't delete some important .dlls on your client some client(s) requires it.
  8. Thank you! Akkarin should apply this on Repo.
  9. Royr

    test

    Not really? but it's totally working without any issues. ?
  10. Ragna Hosting is long time DEAD. i heard a lot of issues back then around 2015+ You can ask @Tokei and @Nova I'd suggest go with other reliable hosting like OVH or Digital Ocean. "NO INSTANT-SETUP"
  11. // Functions function script DispLink { .@id = getarg(0); .@showslot = getarg(1,0); .@slot = getitemslots(.@id); return "<ITEM>"+(.@slot&&.@showslot?getitemname(.@id)+" ["+.@slot+"]":getitemname(.@id))+"<INFO>"+.@id+"</INFO></ITEM>"; } // Scripts prontera.gat, 146, 184, 4 script Display Link 2_DROP_MACHINE,{ mes "[ Display Item ]"; mes " "; mes "Display Link: "+DispLink(4001); close; } This one?
  12. Simply add "}" after the end;
  13. Fake ass Developer A.K.A Almer Digamon ? and asking for help here? try to dig your own source and experiment from scratch.
  14. Looks like you just found the map somewhere else and grab it from GRF(even if it is encrypted). It means the map you get/stole was encrypted. if it "MAP" wasn't encrypted means it's going to work.
  15. Please give this a try, i hope this is what you're looking for. prontera.gat, 155, 185, 4 script Exchanger Board 4_BOARD3,{ .@menu = select( (countitem(501)?"- Exchange with "+getitemname(501)+"":""), (countitem(502)?"- Exchange with "+getitemname(502)+"":""), (countitem(503)?"- Exchange with "+getitemname(503)+"":""), "- Nothing" ); switch(.@menu) { case 1: getitem 607,1; break; case 2: getitem 608,1; break; case 3: getitem 616,1; break; default: mes "[ Exchanger ]"; mes "There's nothing i can do for you."; mes " "; mes "Please come back to me later!"; break; } end; }
  16. 2018-06-20eRegexeRE is supported all it requires atleast PACKETVER >= 20150513.
  17. Ms. Experiment /kis

  18. Davven, if you still need some of your old maps, for future edits "maybe" I still have them yes, I purchased them directly from you at eAthena .

    Welcome back!

    1. DavDav

      DavDav

      That would be great!! Can yku send them to me on this email: [email protected] 

      I would really appreciate it!! ?

    2. Royr

      Royr

      Sended.

       

    3. DavDav

      DavDav

      Thank uou so much Royr. I owe you ?

  19. Try this: prontera,150,180,4 script Exchanger 4_F_BRZ_WOMAN,{ mes .n$; mes "I can exchange your "+getitemname(.exc_id)+"s for other items."; mes "Please select from the list what you want."; mes " "; mes "Currency: "+ getitemname(.exc_id); next; for( .@m = 0; .@m < getarraysize(.item); .@m ++ ) .@g_menu$ = .@g_menu$ + "- "+ getitemname(.item[.@m]) +" ("+ .cost[.@m] +") "+ ( (.item[.@m+1] != 0)?":":""); .@g = select(.@g_menu$) - 1; mes .n$; mes "You have chosen "+ getitemname(.item[.@g]) +" for the price of "+ .cost[.@g] +" "+ getitemname(.exc_id) +"s"; mes "Is that correct?"; next; if( select("- Yes:- No" ) - 1) close; mes .n$; if( countitem(.exc_id) < .cost[.@g] ) { mes "I'm sorry, but you don't have enough "+getitemname(.exc_id)+", please come back when you have enough."; close; } getitem .item[.@g],1; delitem .exc_id,.cost[.@g]; mes "Exchange complete."; close; OnInit: .n$ = "[ "+ strnpcinfo(0) +" ]"; .exc_id = 501; setarray .item[0],603,13890,13889,618,616; setarray .cost[0],1,1,1,1,1; end; }
  20. function script AddPoints { .@accountID = getarg(0); .@amount = getarg(1); getitem $shardIds[0], .@amount; message rid2name(.@accountID), "You've recieved "+ .@amount +" Shard"+ (.@amount > 1 ? "s":"") +"."; return; }
  21. in mob.c - pc_isGM(sd) + pc_get_group_level(sd) Try this one: if( (mvp_sd && pc_get_group_level(mvp_sd)) || (sd && pc_get_group_level(sd)) ) { if( mvp_sd && pc_get_group_level(mvp_sd) < battle_config.gm_monsterdrop_lv ) type |= 1; else if( sd && pc_get_group_level(sd) < battle_config.gm_monsterdrop_lv ) type |= 1; } It should work, i tested mine here.
  22. Raw Script: Lucky Gambler prontera.gat, 155, 185, 5 script Lucky Gambler 757,{ /* Note: Calculations: 100/50 = 2 so 2 is 50% */ // Required Item .@item_ID = 501; // .@item_List[0],<rates>,<item_id>,......... setarray .@item_List[0], 2,5738, 20,5443, 25,2294, 30,5509, 50,5150 ; setarray .@item_Ann[0], 5738, 5443, 2294, 5509, 5150 ; mes "Do you want to use your "+getitemname( .@item_ID )+" to try and get something valuable items."; next; if( select("- Yes:- No")-1 ) close; if( !countitem( .@item_ID ) ) { mes "You don't have any "+getitemname( .@item_ID )+"."; mes "Please come back to me if you have it already."; } else { delitem .@item_ID,1; for( .@j = 0; .@j < getarraysize(.@item_List); .@j+= 2 ) { if( rand(.@item_List[.@j]) == 1 ) { getitem( .@item_List[.@j+1] ),1; mes "Congratulations!"; for( .@i = 0; .@i < getarraysize(.@item_List); .@i++ ) { if( .@item_List[.@j+1] == .@item_Ann[.@i] ) { announce "[ Lucky Gambler ]: Player " + strcharinfo(0) +" has obtained "+ ((.@item_List[.@j]>=50)?"'Low'":"'High'") +" "+getitemname( .@item_List[.@j+1] )+" with ["+ (100/.@item_List[.@j]) +"%] Chance.",bc_all,0xBA55D3; } } specialeffect 154; close; } } specialeffect 155; mes "It's failed, sorry."; } close; }
  23. Royr

    @ccommands

    If you know how to modify the script then your good to go.
  24. Royr

    @ccommands

    Search Engine is the 'key' there are tons of that similar to your requests.
×
×
  • Create New...