Jump to content

seventhief

Members
  • Posts

    4
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling
  • Location
    Laguna

Recent Profile Visitors

1,233 profile views

seventhief's Achievements

Poring

Poring (1/15)

0

Reputation

  1. sir i have some problem with quest shop. problem is when i change "qshop" -> "<other name>" the shop does not appear.
  2. Hi, I want to make a guild package npc. Here's a code. I just want to have an expert to look at my code. What I wanted support is how can I have an security so that it will not be abuse. Sorry for my english. PS: The code is not yet done. The code here is just a edited version of guild pack giver of ShogS. Code based layout credited to ShogS. // Script Name: Guild Package NPC Giver // Developer: Seventhief // Description: Nulled // Version: 0.1 // prontera,145,171,1 script Guild Pack Giver 757,{ if(##Gpack == 0) goto L_AG; mes "-- Guild Package Giver --"; mes "Looks like you're on guild"; next; mes "- Sudden disconnection of guildsmen"; mes " will not be given a consideration"; mes "- I am only obligated to give packages"; mes " to guild with 10 members or more" next; mes "- This only a one time"; next; switch(select("Yes:No")) { case 1: query_sql("SELECT `guild_id` FROM `guild_member` WHERE `char_id` = "+getcharid(0)+" AND `account_id` = "+getcharid(3)+"", [email protected]); set [email protected], query_sql("SELECT `account_id`, `position` FROM `guild_member` WHERE `guild_id` = "[email protected]+" AND `online` = 1", [email protected], [email protected]); if ( [email protected] >= 9 ) { // Guild members incl. Master must be 10 or more for(set [email protected],0; [email protected] < [email protected]; [email protected]++) { if ( [email protected][[email protected]] == 0 ) { // Give Item for Guild Master getitem 512,20,[email protected][[email protected]]; } if ( [email protected][[email protected]] != 0 ) { // Give Item for Guild Members getitem 512,1,[email protected][[email protected]]; } } // End For set ##Gpack, 0; warpguild "prontera",157,157,[email protected]; close; } case 2: mes "Nevermind"; close; }end; // End Switch L_AG: mes "Given"; close; } // End Main
  3. this help me alot. Thanks. Hmmm. Wanted to share this one: make a batch file along with the luac.exe and write luac.exe -o %~n1.lub %~n1.lua pause save it as compile.bat and drag n drop the lua file into the compile.bat sorry for my english.
  4. me i have these ones attached... one thing more can i ask where you all translating the text. what translation tool you are using. google translate not good.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.