-
Posts
646 -
Credits
0 -
Joined
-
Last visited
-
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by Phantasmo
-
Vote System for L2OFF
Phantasmo replied to LineageTeardrop's question in Request Server Development Help [L2OFF]
Yep,i had it on mine server. -
WTS Ranked Elo Boosts League Of Legends (Eune/ew)
Phantasmo replied to Phantasmo's topic in Marketplace
Bump -
Share Register Panel (byCorker)
Phantasmo replied to Corker's topic in Server Development Discussion [L2OFF]
I didn't test it but im pretty sure that Password recovery/reset Password aint working. -
Btw i wont suggest pokerstars to anyone. One time i tried to withdraw my funds and it's fucking pain in the ass.
-
Vote System for L2OFF
Phantasmo replied to LineageTeardrop's question in Request Server Development Help [L2OFF]
I have a vote system for you. It works simple. Every 5-10 minute(you can set it up like you wish)a wild announce appears with this Message:We currently have 202 votes at hopzone/topzone there are 10 votes left till the next vote reward will ge given. When The votes in to hopzone/topzone reaches the wished ammount all players rewarded with the item id you wish. -
Some betsites are offering poker services as well. Google them.
-
Share Il Geodata,latest Update From Vanganth's Extender.
Phantasmo replied to Phantasmo's topic in Server Shares & Files [L2OFF]
And again i was talking about this forum,not generally.Ofc i knew that there are off russian geodata's arround. -
Trusted. Good luck with your sales.
-
WTS Ranked Elo Boosts League Of Legends (Eune/ew)
Phantasmo replied to Phantasmo's topic in Marketplace
Yes we have started playing again League of legends one month ago or some. -
DDOS Protection Under 30gbs Attacks
Phantasmo replied to PsyDestiny's topic in Internet Hosting Services
I'm sorry but with this post you won't get not even one customer. -
Welcome and don't forget to obey the rules. Also post in correct section. Cya
-
Tool to pack/unpack skill id class. http://www.mediafire.com/download/vp7cicdynq0uzge/SkillPch_(1).exe Thank you
-
In order to do that edit lin_CreateChar stored procedure, example: USE [lin2world] GO /****** Object: StoredProcedure [dbo].[lin_CreateChar] Script Date: 2013-05-30 02:04:06 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO ALTER PROCEDURE [dbo].[lin_CreateChar] ( @char_name NVARCHAR(24), @account_name NVARCHAR(24), @account_id INT, @pledge_id INT, @builder TINYINT, @gender TINYINT, @race TINYINT, @class TINYINT, @world SMALLINT, @xloc INT, @yloc INT, @zloc INT, @HP FLOAT, @MP FLOAT, @SP INT, @Exp INT, @Lev TINYINT, @align SMALLINT, @PK INT, @Duel INT, @PKPardon INT, @FaceIndex INT = 0, @HairShapeIndex INT = 0, @HairColorIndex INT = 0 ) AS SET NOCOUNT ON SET @char_name = RTRIM(@char_name) DECLARE @char_id int SET @char_id = 0 --Here we set starting level to 20 SET @Lev = 20 SET @Exp = 835863 IF @char_name LIKE N' ' BEGIN RAISERROR ('Character name has space : name = [%s]', 16, 1, @char_name) RETURN -1 END -- check user_prohibit if exists(select char_name from user_prohibit (nolock) where char_name = @char_name) begin RAISERROR ('Character name is prohibited: name = [%s]', 16, 1, @char_name) RETURN -1 end declare @user_prohibit_word nvarchar(20) select top 1 @user_prohibit_word = words from user_prohibit_word (nolock) where @char_name like '%' + words + '%' if @user_prohibit_word is not null begin RAISERROR ('Character name has prohibited word: name = [%s], word[%s]', 16, 1, @char_name, @user_prohibit_word) RETURN -1 end -- check reserved name declare @reserved_name nvarchar(50) declare @reserved_account_id int select top 1 @reserved_name = char_name, @reserved_account_id = account_id from user_name_reserved (nolock) where used = 0 and char_name = @char_name if not @reserved_name is null begin if not @reserved_account_id = @account_id begin RAISERROR ('Character name is reserved by other player: name = [%s]', 16, 1, @char_name) RETURN -1 end end IF @race>5 BEGIN RAISERROR ('Race overflow : = [%s]', 16, 1, @char_name) RETURN -1 END IF @race=0 and @class!=0 and @class!=10 BEGIN RAISERROR ('Class Overflow for Human: = [%s]', 16, 1, @class) RETURN -1 END IF @race=1 and @class!=18 and @class!=25 BEGIN RAISERROR ('Class Overflow for Elf: = [%s]', 16, 1, @class) RETURN -1 END IF @race=2 and @class!=31 and @class!=38 BEGIN RAISERROR ('Class Overflow for DE: = [%s]', 16, 1, @class) RETURN -1 END IF @race=3 and @class!=44 and @class!=49 BEGIN RAISERROR ('Class Overflow for Orc: = [%s]', 16, 1, @class) RETURN -1 END IF @race=4 and @class!=53 BEGIN RAISERROR ('Class Overflow for Dwarf: = [%s]', 16, 1, @class) RETURN -1 END -- insert user_data INSERT INTO user_data ( char_name, account_name, account_id, pledge_id, builder, gender, race, class, subjob0_class, world, xloc, yloc, zloc, HP, MP, max_hp, max_mp, SP, Exp, Lev, align, PK, PKpardon, duel, create_date, face_index, hair_shape_index, hair_color_index ) VALUES (@char_name, @account_name, @account_id, @pledge_id, @builder, @gender, @race, @class, @class, @world, @xloc, @yloc, @zloc, @HP, @MP, @HP, @MP, @SP, @Exp, @Lev, @align, @PK, @Duel, @PKPardon, GETDATE(), @FaceIndex, @HairShapeIndex, @HairColorIndex) IF (@@error = 0) BEGIN SET @char_id = @@IDENTITY INSERT INTO quest (char_id) VALUES (@char_id) END SELECT @char_id if @char_id > 0 begin -- make user_history exec lin_InsertUserHistory @char_name, @char_id, 1, @account_name, NULL if not @reserved_name is null update user_name_reserved set used = 1 where char_name = @reserved_name end This is the part you're interested in: --Here we set starting level to 20 SET @Lev = 20 SET @Exp = 835863 That means the players will start 20lvl. Thank you
-
Since i was asked for,here i'm. I will show you how you can change your server rates. Go to L2Server.ini under the 'Event's and change the rates there. Remember x100 means x1. Note:Don't forget that the EXP rate is same with SP rate.If you wanna change the SP rate only you have to use a script that i will share with you later. Phantasmo
-
How to set castle siege time and Seal period.
Phantasmo replied to Phantasmo's topic in Server Shares & Files [L2OFF]
Done it. Sorry for the delay but i was little bussy those days. -
Code Hidde & Seek Auto Event
Phantasmo replied to AbsolutePower's topic in Server Shares & Files [L2J]
Nice share dude.Keep it up. I will test it and ill give some proper feedback later. -
Share Il Geodata,latest Update From Vanganth's Extender.
Phantasmo replied to Phantasmo's topic in Server Shares & Files [L2OFF]
There are any OFF russian geodata arround? Don't think so. -
Ranked elo boosts Dear Maxcheaters. I'm here to provide you our new service.Boost elo/divisions at League of Legends. We are currently boosting at EUNE/EW Who we are? We started playing League of Legends about two years ago. We are a Diamond Team group of 5 friends.We thought long time ago to start that kind of service but now we found the time we needed.So here we are. What our current rank? Most of us are Diamond I/II. There are any proofs about your skills/accounts etc? Of course.All the needed informations you may need can be shown via Share screen(skype)Or TeamViewer. Our prices? Well our prices are kinda low since we do it as hobby.We are all have real jobs and we wanted just to have an extra payment per month. -Full promote from one division to another-15euro. Example:From Gold5 to Gold4 -Full promote from one badge to another-60euro. Example:From Silver5 to gold5. -Promote you to promotion games.5e Silver ranks,8e Gold ranks.15e at Platinum/Diamond Ranks. -Play your promotion games 10e(If we lose them due to trolls/leavers etc we will do it again for Free. -Full promote your ranked Team 20e per Division. We are Currently boosting from Bronze 5 to Diamond 4 Maximum. Payments. Payments methods that you can use in order to buy our service are three for the moment. 1st)Paypal 2nd)Paysafecards 3rd)Moneybookers. Rules in order to buy our service. When you contact us we will tell you the estimated time we need to boost your account.(It will be fast don't worry) Payments will be done before we start boosting just to avoid scammers. Prices are final and not negiotable. Remember:YOu came to us to boost your account because you don't have the time to do it alone,or you don't have the skill to do it. You won't be able to join ranked games by yourself while we are boosting you. If you don't have second account we will give you one in order to spectate us while we are boosting you. PM me for more informations. Skype will be given via PM only. Phantasmo
-
LF Serious & Ready Project to Buy
Phantasmo replied to badriniki's topic in Marketplace [L2Packs & Files]
Added to skype. -
[GUIDE] How to earn $2000+ per month with Neobux!
Phantasmo replied to timme's topic in Guides & Tutorials
You haven't noticed the NOT.Did you? -
[GUIDE] How to earn $2000+ per month with Neobux!
Phantasmo replied to timme's topic in Guides & Tutorials
Dat. It's not normal to gain 2000e per month via advertsing something. -
LF Serious & Ready Project to Buy
Phantasmo replied to badriniki's topic in Marketplace [L2Packs & Files]
L2J or L2OFF? I have L2OFF files ready to go,you have just to normalize the rates.(or i can do that anyway) -
sxetika me DONATE
Phantasmo replied to lampros1996's question in Request Server Development Help [Greek]
1ον)Τα Ελληνικα σου ειναι αθλια.Καλυτερα να γραφεις σε greeklish. 2ον)Το Paypal για παραδειγμα σου δινει μεχρι 2500ευρω οριο Αναλυψης αν εχεις ενα απλο account.(Ελευθερο) 3ον)Σιγα μην μπεις φυλακη επειδη εβγαλες λεφτα απο το Ιντερνετ. 4ον)Καλημερα. Να με συμπαθατε για τους τονους αλλα ποσταρα απο κινητο.