Jump to content

GM Freya

Members
  • Posts

    16
  • Joined

  • Last visited

About GM Freya

  • Birthday 07/30/1992

Profile Information

  • Gender
    Male
  • Location
    philippines
  • Server
    www.priam-ro.com

Contact Methods

Recent Profile Visitors

2143 profile views

GM Freya's Achievements

Poring

Poring (1/15)

0

Reputation

  1. Anyone know about Renewal Client that compatible to Eamod?
  2. CREATE TABLE `guild_package` ( `id` int(11) NOT NULL auto_increment, `account_id` int(11) NOT NULL default '0', `last_ip` varchar(100) NOT NULL default '', PRIMARY KEY (`account_id`), KEY (`id`) ) ENGINE=MyISAM; CREATE TABLE `guild_member` ( `guild_id` int(11) unsigned NOT NULL default '0', `account_id` int(11) unsigned NOT NULL default '0', `name` varchar(24) NOT NULL default '', `char_id` int(11) unsigned NOT NULL default '0', `last_ip` varchar(100) NOT NULL default '', `online` tinyint(4) unsigned NOT NULL default '0', `hair` tinyint(6) unsigned NOT NULL default '0', `hair_color` smallint(6) unsigned NOT NULL default '0', `gender` tinyint(6) unsigned NOT NULL default '0', `class` smallint(6) unsigned NOT NULL default '0', `lv` smallint(6) unsigned NOT NULL default '0', `exp` bigint(20) unsigned NOT NULL default '0', `exp_payper` tinyint(11) unsigned NOT NULL default '0', `position` tinyint(6) unsigned NOT NULL default '0', PRIMARY KEY (`guild_id`,`char_id`), KEY `char_id` (`char_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; This is my SQL... prontera,147,164,4 script Guild Admin 88,{ if(#Claimed == 1) goto L_AG; if ( getguildmaster(getcharid(2)) != strcharinfo(0) ) goto L_not_gm; mes "[Guild Admin]"; mes "Hello There it seems you are a Guild Master."; mes "On our server we have here a sytem called Guild Package."; next; mes "[Guild Admin]"; mes "You will need 5 online members to your guild and includes you as of them."; mes "Or visit us on www.priam-ro.com/forum for more information about Guild Package."; next; mes "[Guild Admin]"; mes "Do you want to claim it now and let me check your online players from your guild?"; next; switch(select("Checking Requirements:Ready for claiming Guild Package:Maybe later..")) { case 1: mes "[Guild Admin]"; mes "Checking..."; set .@guild, getcharid(2); next; mes "[Guild Admin]"; mes "Checking..."; callsub OnCheck,1; next; mes "[Guild Admin]"; mes "Your guild has a "+.@members+" members online with cleared IP Address in our database."; next; if(.@members < 5){ mes "[Guild Admin]"; mes "Sorry but your guild didn't reach the minimum amount of members needed."; set .@members,0; close; } mes "[Guild Admin]"; mes "Your guild is qualified to apply Guild Package since you have "+.@members+" members online with cleared IP Address."; set .@members,0; close; case 2: mes "[Guild Admin]"; mes "You will need at least 200 space to your storage or else."; mes "Do you want to proceed?"; set .@guild, getcharid(2); next; switch(select("Yes:No")) { case 1: mes "[Guild Admin]"; mes "Processing...."; next; mes "[Guild Admin]"; mes "Processing...."; callsub OnClaim,1; next; if(.@members < 5){ mes "[Guild Admin]"; mes "Sorry but some of the cleared IP Address are offline."; set .@members,0; close; } if (.@members < 10) {set .@greward,1;} // 5-9 Members else if (.@members < 15) set .@greward,2; // 10-14 Members else if (.@members < 20) set .@greward,3; // 15-19 Members else if (.@members < 25) set .@greward,4; // 20-24 Members else if (.@members < 30) set .@greward,5; // 25-29 Members if (.@members == 30) {set .@greward,6;} // 30 Members mes "[Guild Admin]"; mes "All items are stored to your storage please check."; //Item List storeitem 14004,(10*.@greward); //10x Poison Bottle Box storeitem 13995,(15*.@greward); //15x Speed Potion Box storeitem 14003,(50*.@greward); //50x Elite Siege Box storeitem 13989,(50*.@greward); //50x Acid Bomb Box storeitem 5808,(1*.@greward); //1x Dark Bacillium [1] storeitem2 5170,(4*.@greward),1,6,0,0,0,0,0; //4x +6 Feather Beret storeitem2 2424,(4*.@greward),1,6,0,0,0,0,0; //4x +6 Tidal Shoes [1] storeitem2 2528,(4*.@greward),1,6,0,0,0,0,0; //4x +6 Wool Scarf [1] storeitem 2701,(4*.@greward); //4x Orleans Glove [1] storeitem 2729,(4*.@greward); //4x Diablos Ring [1] storeitem 2375,(1*.@greward); //1x Diablos Armor [1] storeitem 2374,(1*.@greward); //1x Diablos Robe [1] storeitem 2357,(1*.@greward); //1x Valkyrian Armor [1] storeitem 2115,(1*.@greward); //1x Valkyrian Shield [1] set #Claimed, 1; set .@members,0; set .@greward,0; close; case 2: mes "[Guild Admin]"; mes "^616D7ENevermind~, You can come back again!"; close; }end; case 3: mes "[Guild Admin]"; mes "^616D7ENevermind~, You can come back again!"; close; }end; L_AG: mes "[Guild Admin]"; mes "^616D7EYour already given a package."; close; L_not_gm: mes "[Guild Admin]"; mes "Ask your guild master to see me."; close; OnCheck: for(set .@i,0; .@i<30; set .@i,.@i+1) deletearray .@acc[0], getarraysize(.@acc); deletearray .@char[0], getarraysize(.@char); query_sql("SELECT account_id,char_id FROM `guild_member` WHERE guild_id = '"+.@guild+"'", .@acc, .@char); for(set .@j,0; .@j<getarraysize(.@acc); set .@j,.@j+1) if (isloggedin(.@acc[.@j],.@char[.@j])) { query_sql("SELECT last_ip FROM `guild_member` WHERE account_id = '"+.@acc[.@j]+"'",.@ip1); query_sql("SELECT last_ip FROM `guild_package` WHERE account_id = '"+.@acc[.@j]+"'",.@ip2); if(.@ip1 == .@ip2) { message rid2name(.@acc[.@j]),"Sorry but you can't use cheating on this system."; sleep 1; return; } set .@members,.@members+1; sleep 1;} return; OnClaim: for(set .@i,0; .@i<30; set .@i,.@i+1) deletearray .@acc[0], getarraysize(.@acc); deletearray .@char[0], getarraysize(.@char); query_sql("SELECT account_id,char_id FROM `guild_member` WHERE guild_id = '"+.@guild+"'", .@acc, .@char); for(set .@j,0; .@j<getarraysize(.@acc); set .@j,.@j+1) if (isloggedin(.@acc[.@j],.@char[.@j])) { query_sql("SELECT last_ip FROM `guild_member` WHERE account_id = '"+.@acc[.@j]+"'",.@ip1); query_sql("SELECT last_ip FROM `guild_package` WHERE account_id = '"+.@acc[.@j]+"'",.@ip2); if(.@ip1 == .@ip2) { message rid2name(.@acc[.@j]),"Sorry but you can't use cheating on this system."; sleep 1; return; } query_sql("INSERT INTO `guild_package` (NULL,'account_id' , 'last_ip') VALUES ('.@acc[.@j]','.@ip1')"); set .@members,.@members+1; sleep 1;} return; } This script is working but... I think I just have a problem in OnClaim and OnCheck.. anyone can check this script?
  3. prontera,164,177,2 script Guillaume#Blue 420,{ end; OnInit: waitingroom "Battle Station 3 Players",3,"Guillaume#Blue::OnEnter",1,0,80,99; end; OnEnter: set Bat_Team,1; donpcevent "BG_Queue_Join::OnDoJoin"; end; OnLeave: set Bat_Team,0; donpcevent "BG_Queue_Join::OnDoLeave"; end; } prontera,147,177,7 script Croix#Red 416,{ end; OnInit: waitingroom "Battle Station 3 Players",3,"Croix#Red::OnEnter",1,0,80,99; end; OnEnter: set Bat_Team,2; donpcevent "BG_Queue_Join::OnDoJoin"; end; OnLeave: set Bat_Team,0; donpcevent "BG_Queue_Join::OnDoLeave"; end; } Anyone can help me on the script that I made for my Battleground Registration? I want you to re-edit this one that will trigger OnEnter in every player who enter the waiting room and OnLeave if player leave the waiting room. My main problem here is when I enter the waiting room this one will appear to the console and nothing will happen. [Error]: script_rid2sd: fatal error ! player not attached! [Debug]: Function: set (2 parameters): [Debug]: Data: variable name='Bat_Team' [Debug]: Data: number value=2 [Debug]: Source (NPC): Croix#Red at prontera (147,177) [Error]: script:set: no player attached for player variable 'Bat_Team' please tell me if I post in the wrong section.
  4. nope.. when I check the console password change to something like random symbols.
  5. When I login an account the client said incorrect password or username something like that.
  6. Do you have any guide for Ragexe client?... is that working in eAmod svn? 2012-04-10aRagexeRE I already try this one but the body relocation is the main problem. don't know how to fix it.
  7. rA is already fix it via source. Sir can you share me the link of the source and clients that you are using right now?
  8. Hi sir/mam I am looking for a renewal client with fix body relocation effect.. I want a client that will fit to my eamod. please also send me the data file need for that client.. thank you..
  9. Question to all Pro Developer How to fix random gravity errors in BG and WOE using 2010-07-30 client?
  10. Did anyone know a client that can switch for my 2010-07-30aRagexeRE. Ive alway got gravity error when having battleground. example: Module Name: D:\pRO\PriamRO.exe Time Stamp: 0x4c52288f - Fri Jul 30 09:19:11 2010 Exception Type: 0xc0000005 0x0b8ba358 0x0050723f PriamRO.exe 0x005b188f PriamRO.exe 0x005a482a PriamRO.exe 0x005a4796 PriamRO.exe 0x007030f3 PriamRO.exe 0x0071762d PriamRO.exe 0x7c81776f kernel32.dll eax: 0x0b8b9100 ebx: 0x0000003f ecx: 0x0b8bb060 edx: 0x00000000 esi: 0x0b8bb060 edi: 0x00000002 ebp: 0x0012fb48 esp: 0x0012fb40 stack 0012fb40 - 0012ff40 0012FB40 : 41 AF 43 60 C0 AB 7D 00 8C FB 12 00 3F 72 50 00 0012FB50 : 3F 00 00 00 02 00 00 00 00 00 00 00 30 9A 6E 08 0012FB60 : 4F 4E B4 76 30 9A 6E 08 4F 4E B4 76 00 00 00 00 0012FB70 : 00 00 00 00 01 00 00 00 8D 01 00 00 26 01 00 00 0012FB80 : 00 00 00 00 65 01 00 00 8F 01 00 00 AC FB 12 00 0012FB90 : 8F 18 5B 00 00 00 00 00 30 9A 6E 08 4F 4E B4 76 0012FBA0 : F8 FB 12 00 7B 36 73 00 10 29 8C 0B D4 FB 12 00 0012FBB0 : 2A 48 5A 00 00 00 00 00 30 9A 6E 08 46 24 80 7C 0012FBC0 : 13 24 80 7C 55 24 80 7C 01 00 00 00 00 00 00 00 0012FBD0 : 04 FC 12 00 04 FC 12 00 96 47 5A 00 77 42 81 00 0012FBE0 : 9F 42 81 00 60 42 81 00 AC 36 53 00 30 FF 12 00 0012FBF0 : 20 C3 79 00 00 00 00 00 B0 FF 12 00 46 16 73 00 0012FC00 : FF FF FF FF 34 FF 12 00 F3 30 70 00 00 00 00 00 0012FC10 : 30 9A 6E 08 00 00 00 00 00 00 00 00 00 B0 FD 7F 0012FC20 : 28 02 91 7C FF FF FF FF 22 02 91 7C 86 10 91 7C 0012FC30 : DB 01 91 7C C0 EC 83 00 10 FF 12 00 00 00 00 00 Launch Info 00DA 00DB 00E4 00E4 00E4 00E4 00E4 00CB 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 Job : High Wizard
  11. When im done diffting that client it wont open. even i get the correct files needed. Anyone can diff this to 2012-04-10 or 2012-06-18? Always Call SelectKoreaClientInfo() Chat @-Bug Custom Window Title: Priam Ragnarok Online Disable 1rag1 & 1sak1 Disable 4 Letter User Character Limit Disable 4 Letter User ID Limit Disable 4 Letter User Password Limit Disable HShield Disable Nagle Algorithm Disable RagexeRE Filename Check Disable Swear Filter Enable 64K hairstyles Enable ASCII in Text Enable Aura Over Level 99 And Level 150 Enable DNS Support Enable Multiple GRFs Enable Official Custom Fonts Enable Title Bar Menu Enforce Official Login Background Extended Chat Box Extended Chat Room Box Extended PM Box Force Send Client Hash Packet Ignore Missing File Errors Ignore Missing Palette Errors Increase Headgear View ID: 30000 Only First Login Background Read msgstringtable.txt Read questid2display.txt Remove Gravity Ads Remove Gravity Logo Remove Hourly Game Grade Banner Remove Hourly Playtime-Minder Remove Serial Display Restore Login Window Skip License Screen Skip Packet Header Obsfucation Translate Client Into English Use Arial On All Langtypes Use Custom Aura Sprites Use Normal Guild Brackets Use Plain Text Descriptions Use Ragnarok Icon this are what I need but if you are going to add • load LUA before LUB • read data folder first it will be okay for me. please give me the needed file to work this for sure.. my last working diff client that I use is 2010-07-30 i got a problem with this one that's why i need a new updated client. rentitem script command wont work i got some gravity error when rentitem trigger. please help me.
  12. Hello im looking for someone who can make me or diff this client..i just need a new updated client for my server.. i don't get the step for making them...anyone can provide a complete files needed to diff this? I always got a error whem im trying to make one of them.. i hope someone can post some complete details needed . thank you.
  13. Im using 100730 client and i got a error when i use to open some rent items or use rentitem command in scripts.Im also using EAMOD A. anyone can help?
  14. Rentitem Command Client Error or Crash Im using 100730 client and i got a error when i use to open some rent items or use rentitem command in scripts.Im also using EAMOD A. anyone can help?
×
×
  • Create New...