Jump to content
Sign in to follow this  
yazan22

need some elp thank you all

Recommended Posts

hi all:) 

1. i need help how to do ticket for map ?

2. i have rainbow files so i want change map icville to main map icicle how?because i lunched map darkblue but when i teleport in ticket or from teleporter its moved me to icville:

3. i need to launch PKmap so how i teleport to it ?or ticket ?

4. i need to know how i disable auto patcher because wen iam trying to comilner the client of rainbow i cant thats told me u have to run auto patcher first 

5. i want database file Website working with sql 2014,, i try  to attach it told me error 

 thank you all for helping and reading ...xD

Edited by yazan22

Share this post


Link to post
Share on other sites

1. Why not check Argent Ticket and look it's function at itemeffect.lua?

2. 

3. Make a teleporter npc?

4. Make a batch file with this inside "start system\Game.exe startgame"

5. What error? 

Share this post


Link to post
Share on other sites

Better For Beginners Use Clean Files

Or
To Create New Main Map , u have To Change Birth In StringSet.bin,GroupServer.CFG

So Better For You Check Your Scripts Follow The Details Below :

1. Open Your Iteminfo.txt Search For "Ticket to Icicle"

4604    Ticket to Icicle    n0307    10130005    0    0    0    0    0    0    36    0    0    0    0    0    1    1    1    1    99    0    5000    -1,-2,-2,-2    0    -1,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2    0    0    -1,-2,-2,-2,-2,-2,-2,-2,-2,-2    -1,-2,-2,-2,-2,-2,-2,-2,-2,-2    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0    0,0    0,0    0,0    0,0    0,0    0,0    0,0    0,0    0,0    0,0    0,0    0,0    0,0    0,0    0,0    0,0    0,0    0,0    0,0    0,0    0,0    0,0    0    0,0    0,0    0    0    0    0    0    0    0    0    0    Jz_Script_blbcs    0    0    0    0,0    0    0    Teleport ticket to Icicle City    0

2. This  "Jz_Script_blbcs"  This is the ItemEffect the iteminfo read it from resource\script\calculate\ItemEffect.lua

3. Open Your ItemEffect.lua Search For This  "Your Ticket ItemEffect Script" you will find it same as  "Jz_Script_blbcs"    

4. Check It Will Be Like This 

function Jz_Script_blbcs(role, Item )
local map_name = GetChaMapName (role)
	if map_name == "prisonisland" or map_name == "darkhouse" then
		SystemNotice ( role , "You cannot use this item here" )
		UseItemFailed ( role )
		return
	end
	local i = CheckBagItem(role,4604)
	local k = ChaIsBoat(role)
	local hp = Hp(role)
	local mxhp = Mxhp(role)
	local sp = Sp(role)
	local mxsp = Mxsp(role)
	if sp < mxsp or hp < mxhp then 
		SystemNotice (role, "Teleportation is a tedious process. Please maintain full HP and SP")
		UseItemFailed ( role )
		return
	end 
	if k == 0 then
		if i > 0 then
			local j = DelBagItem(role,4604,1)
			if j == 1 then
				MoveCity(role,"Icicle Castle")
				return
			end
		end
	else
		UseItemFailed ( role )
	end

end

 

If Same As This It Should Work If Not Then Check Birth How To Check? It Follow Below Details :)

1.  You See MoveCity(role,"Icicle Castle") In The Script Above? Copy This Icicle Castle

2. Then Goto \resource\script\birth\birth_conf.lua Check It By Searching  about this "Icicle Castle"

It Should Be Like This :

AddBirthPoint("Icicle Castle", "darkblue",  1316,  536)
AddBirthPoint("Icicle Castle", "darkblue",  1342,  481)
AddBirthPoint("Icicle Castle", "darkblue",  1305,  503)

 

 

Hope That I Helped You :D Enjoy :) 

Edited by Indestructible

Share this post


Link to post
Share on other sites
16 hours ago, Foxseiz said:

1. Why not check Argent Ticket and look it's function at itemeffect.lua?

2. 

3. Make a teleporter npc?

4. Make a batch file with this inside "start system\Game.exe startgame"

5. What error? 

Make a batch file with this inside "start system\Game.exe startgame"

I already do it but cant join

Untitledsdc.gif

Edited by yazan22

Share this post


Link to post
Share on other sites
Цитата

3. i need to launch PKmap so how i teleport to it ?or ticket ?

 

You also can teleport to the map using GM command:

&move x,y,pkmap
Цитата

Make a batch file with this inside "start system\Game.exe startgame"

I already do it but cant join

This error says that parameter "startgame" was changed in Game.exe

 

Цитата

5. i want database file Website working with sql 2014,, i try  to attach it told me error 

 thank you all for helping and reading ...xD

Try run MSSQL Management Studio under Administrator mode.

 


Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Sign in to follow this  

×
×
  • Create New...