Would you say this is possible - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Would you say this is possible (
/showthread.php?tid=471377)
Would you say this is possible -
matthew1211 - 22.10.2013
Ok so my roleplay gamemode has now launched a csi faction but to enhance it an lot we want to know if we could make it rply so when people break into houses if they dont buy gloves they can leave dns around.
Re: Would you say this is possible -
kaisersouse - 22.10.2013
Oh look my brain just urinated. Moving to scripting (?) forum
Re: Would you say this is possible -
Akira297 - 22.10.2013
You need to post something like this inside of 'Scripting Requests'.
Re: Would you say this is possible -
CrazyChoco - 22.10.2013
He is asking wether it's possible or not. Although it is possible, by using different types of variables and so on.
Re: Would you say this is possible -
Naruto_Emilio - 22.10.2013
Everything is possible with pawn , as long as you have skills
Re: Would you say this is possible -
JohnRazer - 22.10.2013
Uhm, yes. This hurt my brain.
Re: Would you say this is possible -
Unri - 22.10.2013
Is is possible. You can add latex/leather or what ever gloves to your 24/7 shop, that would add
pawn Code:
PlayerInfo[playerid][pGloves] = 1;
. Then create a cmd for the player to equip them like /gloves or something. That would trigger
pawn Code:
PlayerInfo[playerid][pGlovesEquipped] = 1;
And when the player decied to rob a house/break into house, the robbing/breaking cmd would check if the player has pGloves = 1, if not, make the script execute the dns part by adding the DNS information under the house ID or how ever you would like it to.
My english is terrible, i hope you could understand something..